FreeCalypso > hg > gsm-codec-lib
comparison amrtest/Makefile @ 430:edbbbf1c4ab1
implement twamr-tseq-dec test program
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Tue, 07 May 2024 23:35:41 +0000 |
| parents | 1ceda5586d01 |
| children | e80632ccb745 |
comparison
equal
deleted
inserted
replaced
| 429:3ce30a95769e | 430:edbbbf1c4ab1 |
|---|---|
| 1 CC= gcc | 1 CC= gcc |
| 2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
| 3 PROGS= twamr-tseq-enc | 3 PROGS= twamr-tseq-dec twamr-tseq-enc |
| 4 LIBAMR= ../libtwamr/libtwamr.a | 4 LIBAMR= ../libtwamr/libtwamr.a |
| 5 INSTBIN=/opt/freecalypso/bin | 5 INSTBIN=/opt/freecalypso/bin |
| 6 | 6 |
| 7 all: ${PROGS} | 7 all: ${PROGS} |
| 8 | |
| 9 twamr-tseq-dec: tseq-dec.o ${LIBAMR} | |
| 10 ${CC} ${CFLAGS} -o $@ tseq-dec.o ${LIBAMR} | |
| 8 | 11 |
| 9 twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} | 12 twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} |
| 10 ${CC} ${CFLAGS} -o $@ mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} | 13 ${CC} ${CFLAGS} -o $@ mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} |
| 11 | 14 |
| 12 install: | 15 install: |
