FreeCalypso > hg > gsm-net-reveng
view tfo/Makefile @ 14:98c0881c2af0
tfo/find-is-hdr: move here from freecalypso-reveng
This little program was developed in freecalypso-reveng Hg repository
in 2023-03, when we didn't have a separate repository for network-side
reverse eng, but now that we do have separate repositories for
FreeCalypso (mobile side) vs network side reverse eng, move TFO RE
work to the proper place.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 24 May 2024 21:18:22 +0000 |
parents | |
children | fec87477e60b |
line wrap: on
line source
CC= gcc CFLAGS= -O2 STD= find-is-hdr PROGS= ${STD} all: ${PROGS} ${STD}: ${CC} ${CFLAGS} -o $@ $@.c find-is-hdr: find-is-hdr.c clean: rm -f ${PROGS} *.o *errs *.out