comparison trau-decode/Makefile @ 74:e78c6b1ecb91

trau-decode: refactor trau-hr-dump The desire is to create a companion program that will read hex lines representing TRAU-8k frames and then decode those frames in exactly the same way how we currently decode frames read from binary capture files. Hence the decoder portion of trau-hr-dump needs to be factored out.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 08 Feb 2025 03:00:31 +0000
parents 5f98c5cae4ea
children b518ab15b518
comparison
equal deleted inserted replaced
73:06f241846c67 74:e78c6b1ecb91
11 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr 11 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr
12 12
13 trau-extr: extr-fr.o extr-efr.o extr-main.o 13 trau-extr: extr-fr.o extr-efr.o extr-main.o
14 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 14 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2
15 15
16 trau-hr-dump: crc8gen.o gsmhr_unpack.o trau-hr-dump.o 16 trau-hr-dump: crc8gen.o gsmhr_unpack.o hr-guts.o trau-hr-dump.o
17 ${CC} ${CFLAGS} -o $@ $^ 17 ${CC} ${CFLAGS} -o $@ $^
18 18
19 trau-parse: crc8gen.o parse-fr.o parse-efr.o parse-main.o 19 trau-parse: crc8gen.o parse-fr.o parse-efr.o parse-main.o
20 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr 20 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr
21 21