FreeCalypso > hg > gsm-codec-lib
annotate amrtest/Makefile @ 511:a5d61331b675
libgsmhr1: generate packed version of DHF
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Sun, 25 Aug 2024 02:50:43 +0000 | 
| parents | cb1d1ea7f2c5 | 
| children | 
| rev | line source | 
|---|---|
| 446 
e2f824ffd08a
amrtest: implement twamr-decode-r
 Mychaela Falconia <falcon@freecalypso.org> parents: 
445diff
changeset | 1 PROGS= twamr-decode twamr-decode-r twamr-encode twamr-encode-r twamr-tseq-dec \ | 
| 
e2f824ffd08a
amrtest: implement twamr-decode-r
 Mychaela Falconia <falcon@freecalypso.org> parents: 
445diff
changeset | 2 twamr-tseq-enc | 
| 422 
1ceda5586d01
implement twamr-tseq-enc test program
 Mychaela Falconia <falcon@freecalypso.org> parents: 
239diff
changeset | 3 LIBAMR= ../libtwamr/libtwamr.a | 
| 443 
526a7f0e027d
amrtest: implement twamr-encode
 Mychaela Falconia <falcon@freecalypso.org> parents: 
436diff
changeset | 4 LIBTEST=../libtest/libtest.a | 
| 453 
19f1aa01ea10
new approach to config & build for ThemWi software
 Mychaela Falconia <falcon@freecalypso.org> parents: 
446diff
changeset | 5 | 
| 
19f1aa01ea10
new approach to config & build for ThemWi software
 Mychaela Falconia <falcon@freecalypso.org> parents: 
446diff
changeset | 6 include ../config.defs | 
| 12 
f88817a233fb
gsmfr-decode test program written
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 7 | 
| 27 
896ce7f1d271
frtest: cn-debug is now gsmfr-max-out
 Mychaela Falconia <falcon@freecalypso.org> parents: 
26diff
changeset | 8 all: ${PROGS} | 
| 12 
f88817a233fb
gsmfr-decode test program written
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 9 | 
| 444 
fe4983b05230
amrtest: implement twamr-decode
 Mychaela Falconia <falcon@freecalypso.org> parents: 
443diff
changeset | 10 twamr-decode: decode.o ${LIBAMR} ${LIBTEST} | 
| 
fe4983b05230
amrtest: implement twamr-decode
 Mychaela Falconia <falcon@freecalypso.org> parents: 
443diff
changeset | 11 ${CC} ${CFLAGS} -o $@ $^ | 
| 
fe4983b05230
amrtest: implement twamr-decode
 Mychaela Falconia <falcon@freecalypso.org> parents: 
443diff
changeset | 12 | 
| 446 
e2f824ffd08a
amrtest: implement twamr-decode-r
 Mychaela Falconia <falcon@freecalypso.org> parents: 
445diff
changeset | 13 twamr-decode-r: decode-r.o ${LIBAMR} ${LIBTEST} | 
| 
e2f824ffd08a
amrtest: implement twamr-decode-r
 Mychaela Falconia <falcon@freecalypso.org> parents: 
445diff
changeset | 14 ${CC} ${CFLAGS} -o $@ $^ | 
| 
e2f824ffd08a
amrtest: implement twamr-decode-r
 Mychaela Falconia <falcon@freecalypso.org> parents: 
445diff
changeset | 15 | 
| 443 
526a7f0e027d
amrtest: implement twamr-encode
 Mychaela Falconia <falcon@freecalypso.org> parents: 
436diff
changeset | 16 twamr-encode: encode.o mode_file.o mode_kw.o ${LIBAMR} ${LIBTEST} | 
| 
526a7f0e027d
amrtest: implement twamr-encode
 Mychaela Falconia <falcon@freecalypso.org> parents: 
436diff
changeset | 17 ${CC} ${CFLAGS} -o $@ $^ | 
| 
526a7f0e027d
amrtest: implement twamr-encode
 Mychaela Falconia <falcon@freecalypso.org> parents: 
436diff
changeset | 18 | 
| 445 
30cff6b60890
amrtest: implement twamr-encode-r
 Mychaela Falconia <falcon@freecalypso.org> parents: 
444diff
changeset | 19 twamr-encode-r: encode-r.o mode_file.o mode_kw.o ${LIBAMR} ${LIBTEST} | 
| 
30cff6b60890
amrtest: implement twamr-encode-r
 Mychaela Falconia <falcon@freecalypso.org> parents: 
444diff
changeset | 20 ${CC} ${CFLAGS} -o $@ $^ | 
| 
30cff6b60890
amrtest: implement twamr-encode-r
 Mychaela Falconia <falcon@freecalypso.org> parents: 
444diff
changeset | 21 | 
| 430 
edbbbf1c4ab1
implement twamr-tseq-dec test program
 Mychaela Falconia <falcon@freecalypso.org> parents: 
422diff
changeset | 22 twamr-tseq-dec: tseq-dec.o ${LIBAMR} | 
| 436 
e80632ccb745
simplify test program Makefiles
 Mychaela Falconia <falcon@freecalypso.org> parents: 
430diff
changeset | 23 ${CC} ${CFLAGS} -o $@ $^ | 
| 430 
edbbbf1c4ab1
implement twamr-tseq-dec test program
 Mychaela Falconia <falcon@freecalypso.org> parents: 
422diff
changeset | 24 | 
| 422 
1ceda5586d01
implement twamr-tseq-enc test program
 Mychaela Falconia <falcon@freecalypso.org> parents: 
239diff
changeset | 25 twamr-tseq-enc: mode_file.o mode_kw.o tseq-enc.o ${LIBAMR} | 
| 436 
e80632ccb745
simplify test program Makefiles
 Mychaela Falconia <falcon@freecalypso.org> parents: 
430diff
changeset | 26 ${CC} ${CFLAGS} -o $@ $^ | 
| 24 
94f18b720f1e
new debug utility gsmfr-preproc
 Mychaela Falconia <falcon@freecalypso.org> parents: 
19diff
changeset | 27 | 
| 17 
68a7e86c9868
frtest/Makefile: add install
 Mychaela Falconia <falcon@freecalypso.org> parents: 
14diff
changeset | 28 install: | 
| 460 
cb1d1ea7f2c5
new build system: accept more directory options
 Mychaela Falconia <falcon@freecalypso.org> parents: 
453diff
changeset | 29 mkdir -p ${DESTDIR}${bindir} | 
| 
cb1d1ea7f2c5
new build system: accept more directory options
 Mychaela Falconia <falcon@freecalypso.org> parents: 
453diff
changeset | 30 install -c ${PROGS} ${DESTDIR}${bindir} | 
| 17 
68a7e86c9868
frtest/Makefile: add install
 Mychaela Falconia <falcon@freecalypso.org> parents: 
14diff
changeset | 31 | 
| 12 
f88817a233fb
gsmfr-decode test program written
 Mychaela Falconia <falcon@freecalypso.org> parents: diff
changeset | 32 clean: | 
| 27 
896ce7f1d271
frtest: cn-debug is now gsmfr-max-out
 Mychaela Falconia <falcon@freecalypso.org> parents: 
26diff
changeset | 33 rm -f *.o *.out ${PROGS} | 
