FreeCalypso > hg > gsm-codec-lib
comparison amrtest/Makefile @ 444:fe4983b05230
amrtest: implement twamr-decode
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 09 May 2024 23:35:25 +0000 |
parents | 526a7f0e027d |
children | 30cff6b60890 |
comparison
equal
deleted
inserted
replaced
443:526a7f0e027d | 444:fe4983b05230 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= twamr-encode twamr-tseq-dec twamr-tseq-enc | 3 PROGS= twamr-decode twamr-encode twamr-tseq-dec twamr-tseq-enc |
4 LIBAMR= ../libtwamr/libtwamr.a | 4 LIBAMR= ../libtwamr/libtwamr.a |
5 LIBTEST=../libtest/libtest.a | 5 LIBTEST=../libtest/libtest.a |
6 INSTBIN=/opt/freecalypso/bin | 6 INSTBIN=/opt/freecalypso/bin |
7 | 7 |
8 all: ${PROGS} | 8 all: ${PROGS} |
9 | |
10 twamr-decode: decode.o ${LIBAMR} ${LIBTEST} | |
11 ${CC} ${CFLAGS} -o $@ $^ | |
9 | 12 |
10 twamr-encode: encode.o mode_file.o mode_kw.o ${LIBAMR} ${LIBTEST} | 13 twamr-encode: encode.o mode_file.o mode_kw.o ${LIBAMR} ${LIBTEST} |
11 ${CC} ${CFLAGS} -o $@ $^ | 14 ${CC} ${CFLAGS} -o $@ $^ |
12 | 15 |
13 twamr-tseq-dec: tseq-dec.o ${LIBAMR} | 16 twamr-tseq-dec: tseq-dec.o ${LIBAMR} |