annotate amrefr/Makefile @ 439:65d20172e92a

amrefr: implement amrefr-decode-r utility
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 09 May 2024 00:12:33 +0000
parents 1bf1bbcef763
children 19f1aa01ea10
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
439
65d20172e92a amrefr: implement amrefr-decode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 438
diff changeset
3 PROGS= amrefr-decode-r amrefr-encode-r amrefr-tseq-dec amrefr-tseq-enc
47
89945a3b576e gsmefr-rec2etsi test program added
Mychaela Falconia <falcon@freecalypso.org>
parents: 29
diff changeset
4 LIBEFR= ../libgsmefr/libgsmefr.a
434
ba5031723ab6 implement amrefr-tseq-enc test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 433
diff changeset
5 LIBAMR= ../libtwamr/libtwamr.a
438
1bf1bbcef763 amrefr: implement amrefr-encode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 437
diff changeset
6 LIBTEST=../libtest/libtest.a
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
7 LIBS= ${LIBEFR} ${LIBAMR}
438
1bf1bbcef763 amrefr: implement amrefr-encode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 437
diff changeset
8 LIBST= ${LIBEFR} ${LIBAMR} ${LIBTEST}
17
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
9 INSTBIN=/opt/freecalypso/bin
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
27
896ce7f1d271 frtest: cn-debug is now gsmfr-max-out
Mychaela Falconia <falcon@freecalypso.org>
parents: 26
diff changeset
11 all: ${PROGS}
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
439
65d20172e92a amrefr: implement amrefr-decode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 438
diff changeset
13 amrefr-decode-r: decode-r.o ${LIBST}
65d20172e92a amrefr: implement amrefr-decode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 438
diff changeset
14 ${CC} ${CFLAGS} -o $@ $^
65d20172e92a amrefr: implement amrefr-decode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 438
diff changeset
15
438
1bf1bbcef763 amrefr: implement amrefr-encode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 437
diff changeset
16 amrefr-encode-r: encode-r.o ${LIBST}
1bf1bbcef763 amrefr: implement amrefr-encode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 437
diff changeset
17 ${CC} ${CFLAGS} -o $@ $^
1bf1bbcef763 amrefr: implement amrefr-encode-r utility
Mychaela Falconia <falcon@freecalypso.org>
parents: 437
diff changeset
18
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
19 amrefr-tseq-dec: tseq-dec.o tseq-bit-rd.o tseq-pcm-out.o ${LIBS}
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
20 ${CC} ${CFLAGS} -o $@ $^
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
21
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
22 amrefr-tseq-enc: tseq-enc.o tseq-enc-common.o ${LIBS}
436
e80632ccb745 simplify test program Makefiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 434
diff changeset
23 ${CC} ${CFLAGS} -o $@ $^
164
5f23cb3f0f8d gsmefr-dlcap-dec program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 162
diff changeset
24
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
25 tseq-bit-rd.o: ../efrtest/etsi-bit-rd.c
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
26 ${CC} ${CFLAGS} -c -o $@ $<
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
27
434
ba5031723ab6 implement amrefr-tseq-enc test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 433
diff changeset
28 tseq-enc-common.o: ../efrtest/etsi-enc-common.c
ba5031723ab6 implement amrefr-tseq-enc test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 433
diff changeset
29 ${CC} ${CFLAGS} -c -o $@ $<
24
94f18b720f1e new debug utility gsmfr-preproc
Mychaela Falconia <falcon@freecalypso.org>
parents: 19
diff changeset
30
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
31 tseq-pcm-out.o: ../efrtest/etsi-pcm-out.c
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
32 ${CC} ${CFLAGS} -c -o $@ $<
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
33
17
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
34 install:
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
35 mkdir -p ${INSTBIN}
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
36 install -c ${PROGS} ${INSTBIN}
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
37
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 clean:
27
896ce7f1d271 frtest: cn-debug is now gsmfr-max-out
Mychaela Falconia <falcon@freecalypso.org>
parents: 26
diff changeset
39 rm -f *.o *.out ${PROGS}