FreeCalypso > hg > gsm-codec-lib
view amrtest/Makefile @ 438:1bf1bbcef763
amrefr: implement amrefr-encode-r utility
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 08 May 2024 23:43:26 +0000 |
parents | e80632ccb745 |
children | 526a7f0e027d |
line wrap: on
line source
CC= gcc CFLAGS= -O2 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 $@ $^ twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} ${CC} ${CFLAGS} -o $@ $^ install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f *.o *.out ${PROGS}