FreeCalypso > hg > gsm-codec-lib
comparison amrtest/Makefile @ 446:e2f824ffd08a
amrtest: implement twamr-decode-r
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 10 May 2024 00:30:39 +0000 |
parents | 30cff6b60890 |
children | 19f1aa01ea10 |
comparison
equal
deleted
inserted
replaced
445:30cff6b60890 | 446:e2f824ffd08a |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= twamr-decode twamr-encode twamr-encode-r twamr-tseq-dec twamr-tseq-enc | 3 PROGS= twamr-decode twamr-decode-r twamr-encode twamr-encode-r twamr-tseq-dec \ |
4 twamr-tseq-enc | |
4 LIBAMR= ../libtwamr/libtwamr.a | 5 LIBAMR= ../libtwamr/libtwamr.a |
5 LIBTEST=../libtest/libtest.a | 6 LIBTEST=../libtest/libtest.a |
6 INSTBIN=/opt/freecalypso/bin | 7 INSTBIN=/opt/freecalypso/bin |
7 | 8 |
8 all: ${PROGS} | 9 all: ${PROGS} |
9 | 10 |
10 twamr-decode: decode.o ${LIBAMR} ${LIBTEST} | 11 twamr-decode: decode.o ${LIBAMR} ${LIBTEST} |
12 ${CC} ${CFLAGS} -o $@ $^ | |
13 | |
14 twamr-decode-r: decode-r.o ${LIBAMR} ${LIBTEST} | |
11 ${CC} ${CFLAGS} -o $@ $^ | 15 ${CC} ${CFLAGS} -o $@ $^ |
12 | 16 |
13 twamr-encode: encode.o mode_file.o mode_kw.o ${LIBAMR} ${LIBTEST} | 17 twamr-encode: encode.o mode_file.o mode_kw.o ${LIBAMR} ${LIBTEST} |
14 ${CC} ${CFLAGS} -o $@ $^ | 18 ${CC} ${CFLAGS} -o $@ $^ |
15 | 19 |