comparison amrtest/Makefile @ 443:526a7f0e027d

amrtest: implement twamr-encode
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 09 May 2024 21:00:33 +0000
parents e80632ccb745
children fe4983b05230
comparison
equal deleted inserted replaced
442:6fa27df6903b 443:526a7f0e027d
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= twamr-tseq-dec twamr-tseq-enc 3 PROGS= twamr-encode twamr-tseq-dec twamr-tseq-enc
4 LIBAMR= ../libtwamr/libtwamr.a 4 LIBAMR= ../libtwamr/libtwamr.a
5 LIBTEST=../libtest/libtest.a
5 INSTBIN=/opt/freecalypso/bin 6 INSTBIN=/opt/freecalypso/bin
6 7
7 all: ${PROGS} 8 all: ${PROGS}
9
10 twamr-encode: encode.o mode_file.o mode_kw.o ${LIBAMR} ${LIBTEST}
11 ${CC} ${CFLAGS} -o $@ $^
8 12
9 twamr-tseq-dec: tseq-dec.o ${LIBAMR} 13 twamr-tseq-dec: tseq-dec.o ${LIBAMR}
10 ${CC} ${CFLAGS} -o $@ $^ 14 ${CC} ${CFLAGS} -o $@ $^
11 15
12 twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} 16 twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR}