FreeCalypso > hg > gsm-codec-lib
comparison frtest/Makefile @ 165:ef3ea52a190f
rename gsmfr-cvt-dlcap to gsmfr-dlcap-gsmx
for consistency with EFR version
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Dec 2022 04:09:03 +0000 |
parents | 9814041e8096 |
children | 80c93ef82a51 |
comparison
equal
deleted
inserted
replaced
164:5f23cb3f0f8d | 165:ef3ea52a190f |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= gsmfr-cvt-dlcap gsmfr-decode gsmfr-decode-r gsmfr-encode gsmfr-encode-r\ | 3 PROGS= gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx gsmfr-encode \ |
4 gsmfr-hand-test gsmfr-max-out gsmfr-preproc | 4 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 |
10 CVT_OBJS=cvt-dlcap.o tidsp.o | |
11 | |
12 all: ${PROGS} | 10 all: ${PROGS} |
13 | |
14 gsmfr-cvt-dlcap: ${CVT_OBJS} ${LIBTEST} | |
15 ${CC} ${CFLAGS} -o $@ ${CVT_OBJS} ${LIBTEST} | |
16 | 11 |
17 gsmfr-decode: decode.o ${LIBDEC} | 12 gsmfr-decode: decode.o ${LIBDEC} |
18 ${CC} ${CFLAGS} -o $@ decode.o ${LIBDEC} -lgsm | 13 ${CC} ${CFLAGS} -o $@ decode.o ${LIBDEC} -lgsm |
19 | 14 |
20 gsmfr-decode-r: decode-r.o ${LIBDEC} | 15 gsmfr-decode-r: decode-r.o ${LIBDEC} |
21 ${CC} ${CFLAGS} -o $@ decode-r.o ${LIBDEC} -lgsm | 16 ${CC} ${CFLAGS} -o $@ decode-r.o ${LIBDEC} -lgsm |
17 | |
18 gsmfr-dlcap-gsmx: dlcap-gsmx.o tidsp.o ${LIBTEST} | |
19 ${CC} ${CFLAGS} -o $@ dlcap-gsmx.o tidsp.o ${LIBTEST} | |
22 | 20 |
23 gsmfr-encode: encode.o ${LIBTEST} | 21 gsmfr-encode: encode.o ${LIBTEST} |
24 ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm | 22 ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm |
25 | 23 |
26 gsmfr-encode-r: encode-r.o ${LIBTEST} | 24 gsmfr-encode-r: encode-r.o ${LIBTEST} |