FreeCalypso > hg > gsm-net-reveng
view trau-decode/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 | 0565aaa84b17 |
children | f508dacf2cf9 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= trau-extr trau-parse all: ${PROGS} trau-extr: extr-fr.o extr-efr.o extr-main.o ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 trau-parse: crc8gen.o parse-fr.o parse-efr.o parse-main.o ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr clean: rm -f *.o ${PROGS}