FreeCalypso > hg > gsm-codec-lib
diff amrtest/Makefile @ 422:1ceda5586d01
implement twamr-tseq-enc test program
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 07 May 2024 06:27:20 +0000 |
parents | efrtest/Makefile@b8e095a9e360 |
children | edbbbf1c4ab1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/amrtest/Makefile Tue May 07 06:27:20 2024 +0000 @@ -0,0 +1,17 @@ +CC= gcc +CFLAGS= -O2 +PROGS= twamr-tseq-enc +LIBAMR= ../libtwamr/libtwamr.a +INSTBIN=/opt/freecalypso/bin + +all: ${PROGS} + +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} + +install: + mkdir -p ${INSTBIN} + install -c ${PROGS} ${INSTBIN} + +clean: + rm -f *.o *.out ${PROGS}