FreeCalypso > hg > gsm-codec-lib
comparison amrtest/Makefile @ 436:e80632ccb745
simplify test program Makefiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 08 May 2024 05:32:27 +0000 |
parents | edbbbf1c4ab1 |
children | 526a7f0e027d |
comparison
equal
deleted
inserted
replaced
435:9f354d2aea13 | 436:e80632ccb745 |
---|---|
5 INSTBIN=/opt/freecalypso/bin | 5 INSTBIN=/opt/freecalypso/bin |
6 | 6 |
7 all: ${PROGS} | 7 all: ${PROGS} |
8 | 8 |
9 twamr-tseq-dec: tseq-dec.o ${LIBAMR} | 9 twamr-tseq-dec: tseq-dec.o ${LIBAMR} |
10 ${CC} ${CFLAGS} -o $@ tseq-dec.o ${LIBAMR} | 10 ${CC} ${CFLAGS} -o $@ $^ |
11 | 11 |
12 twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} | 12 twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} |
13 ${CC} ${CFLAGS} -o $@ mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} | 13 ${CC} ${CFLAGS} -o $@ $^ |
14 | 14 |
15 install: | 15 install: |
16 mkdir -p ${INSTBIN} | 16 mkdir -p ${INSTBIN} |
17 install -c ${PROGS} ${INSTBIN} | 17 install -c ${PROGS} ${INSTBIN} |
18 | 18 |