FreeCalypso > hg > gsm-codec-lib
comparison frtest/Makefile @ 245:6de564ef70d3
frtest: new program gsmfr-cod2std
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 09 May 2023 22:32:48 +0000 |
parents | 80c93ef82a51 |
children | 9ee8ad3d4d30 |
comparison
equal
deleted
inserted
replaced
244:fcc0887ff0d0 | 245:6de564ef70d3 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx gsmfr-dlcap-parse \ | 3 PROGS= gsmfr-cod2std gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx \ |
4 gsmfr-encode gsmfr-encode-r gsmfr-hand-test gsmfr-max-out gsmfr-preproc | 4 gsmfr-dlcap-parse gsmfr-encode gsmfr-encode-r gsmfr-hand-test \ |
5 gsmfr-max-out gsmfr-preproc | |
5 LIBPP= ../libgsmfrp/libgsmfrp.a | 6 LIBPP= ../libgsmfrp/libgsmfrp.a |
6 LIBTEST=../libtest/libtest.a | 7 LIBTEST=../libtest/libtest.a |
7 LIBDEC= ${LIBTEST} ${LIBPP} | 8 LIBDEC= ${LIBTEST} ${LIBPP} |
8 INSTBIN=/opt/freecalypso/bin | 9 INSTBIN=/opt/freecalypso/bin |
9 | 10 |
10 all: ${PROGS} | 11 all: ${PROGS} |
12 | |
13 gsmfr-cod2std: cod2std.o | |
14 ${CC} ${CFLAGS} -o $@ cod2std.o -lgsm | |
11 | 15 |
12 gsmfr-decode: decode.o ${LIBDEC} | 16 gsmfr-decode: decode.o ${LIBDEC} |
13 ${CC} ${CFLAGS} -o $@ decode.o ${LIBDEC} -lgsm | 17 ${CC} ${CFLAGS} -o $@ decode.o ${LIBDEC} -lgsm |
14 | 18 |
15 gsmfr-decode-r: decode-r.o ${LIBDEC} | 19 gsmfr-decode-r: decode-r.o ${LIBDEC} |