comparison 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
comparison
equal deleted inserted replaced
421:09534cdc59ec 422:1ceda5586d01
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= twamr-tseq-enc
4 LIBAMR= ../libtwamr/libtwamr.a
5 INSTBIN=/opt/freecalypso/bin
6
7 all: ${PROGS}
8
9 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}
11
12 install:
13 mkdir -p ${INSTBIN}
14 install -c ${PROGS} ${INSTBIN}
15
16 clean:
17 rm -f *.o *.out ${PROGS}