FreeCalypso > hg > gsm-codec-lib
comparison frtest/Makefile @ 167:80c93ef82a51
gsmfr-dlcap-parse utility written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Dec 2022 08:38:36 +0000 |
parents | ef3ea52a190f |
children | 6de564ef70d3 |
comparison
equal
deleted
inserted
replaced
166:500f3e93964f | 167:80c93ef82a51 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx gsmfr-encode \ | 3 PROGS= gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx gsmfr-dlcap-parse \ |
4 gsmfr-encode-r gsmfr-hand-test gsmfr-max-out gsmfr-preproc | 4 gsmfr-encode gsmfr-encode-r gsmfr-hand-test gsmfr-max-out gsmfr-preproc |
5 LIBPP= ../libgsmfrp/libgsmfrp.a | 5 LIBPP= ../libgsmfrp/libgsmfrp.a |
6 LIBTEST=../libtest/libtest.a | 6 LIBTEST=../libtest/libtest.a |
7 LIBDEC= ${LIBTEST} ${LIBPP} | 7 LIBDEC= ${LIBTEST} ${LIBPP} |
8 INSTBIN=/opt/freecalypso/bin | 8 INSTBIN=/opt/freecalypso/bin |
9 | 9 |
15 gsmfr-decode-r: decode-r.o ${LIBDEC} | 15 gsmfr-decode-r: decode-r.o ${LIBDEC} |
16 ${CC} ${CFLAGS} -o $@ decode-r.o ${LIBDEC} -lgsm | 16 ${CC} ${CFLAGS} -o $@ decode-r.o ${LIBDEC} -lgsm |
17 | 17 |
18 gsmfr-dlcap-gsmx: dlcap-gsmx.o tidsp.o ${LIBTEST} | 18 gsmfr-dlcap-gsmx: dlcap-gsmx.o tidsp.o ${LIBTEST} |
19 ${CC} ${CFLAGS} -o $@ dlcap-gsmx.o tidsp.o ${LIBTEST} | 19 ${CC} ${CFLAGS} -o $@ dlcap-gsmx.o tidsp.o ${LIBTEST} |
20 | |
21 gsmfr-dlcap-parse: dlcap-parse.o tidsp.o ${LIBDEC} | |
22 ${CC} ${CFLAGS} -o $@ dlcap-parse.o tidsp.o ${LIBDEC} -lgsm | |
20 | 23 |
21 gsmfr-encode: encode.o ${LIBTEST} | 24 gsmfr-encode: encode.o ${LIBTEST} |
22 ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm | 25 ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm |
23 | 26 |
24 gsmfr-encode-r: encode-r.o ${LIBTEST} | 27 gsmfr-encode-r: encode-r.o ${LIBTEST} |