FreeCalypso > hg > gsm-codec-lib
diff 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 |
line wrap: on
line diff
--- a/amrtest/Makefile Tue May 07 22:34:11 2024 +0000 +++ b/amrtest/Makefile Tue May 07 23:35:41 2024 +0000 @@ -1,11 +1,14 @@ CC= gcc CFLAGS= -O2 -PROGS= twamr-tseq-enc +PROGS= twamr-tseq-dec twamr-tseq-enc LIBAMR= ../libtwamr/libtwamr.a INSTBIN=/opt/freecalypso/bin all: ${PROGS} +twamr-tseq-dec: tseq-dec.o ${LIBAMR} + ${CC} ${CFLAGS} -o $@ tseq-dec.o ${LIBAMR} + twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} ${CC} ${CFLAGS} -o $@ mode_file.o mode_kw.o tseq-enc.o ${LIBAMR}