FreeCalypso > hg > gsm-codec-lib
comparison amrtest/Makefile @ 445:30cff6b60890
amrtest: implement twamr-encode-r
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 10 May 2024 00:07:07 +0000 |
parents | fe4983b05230 |
children | e2f824ffd08a |
comparison
equal
deleted
inserted
replaced
444:fe4983b05230 | 445:30cff6b60890 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= twamr-decode twamr-encode twamr-tseq-dec twamr-tseq-enc | 3 PROGS= twamr-decode twamr-encode twamr-encode-r 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 | 9 |
10 twamr-decode: decode.o ${LIBAMR} ${LIBTEST} | 10 twamr-decode: decode.o ${LIBAMR} ${LIBTEST} |
11 ${CC} ${CFLAGS} -o $@ $^ | 11 ${CC} ${CFLAGS} -o $@ $^ |
12 | 12 |
13 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} |
14 ${CC} ${CFLAGS} -o $@ $^ | |
15 | |
16 twamr-encode-r: encode-r.o mode_file.o mode_kw.o ${LIBAMR} ${LIBTEST} | |
14 ${CC} ${CFLAGS} -o $@ $^ | 17 ${CC} ${CFLAGS} -o $@ $^ |
15 | 18 |
16 twamr-tseq-dec: tseq-dec.o ${LIBAMR} | 19 twamr-tseq-dec: tseq-dec.o ${LIBAMR} |
17 ${CC} ${CFLAGS} -o $@ $^ | 20 ${CC} ${CFLAGS} -o $@ $^ |
18 | 21 |