annotate amrefr/Makefile @ 437:3eadaef8b28f

implement amrefr-tseq-dec test program
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 08 May 2024 23:03:28 +0000
parents e80632ccb745
children 1bf1bbcef763
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
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
3 PROGS= 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
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
6 LIBS= ${LIBEFR} ${LIBAMR}
17
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
7 INSTBIN=/opt/freecalypso/bin
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
27
896ce7f1d271 frtest: cn-debug is now gsmfr-max-out
Mychaela Falconia <falcon@freecalypso.org>
parents: 26
diff changeset
9 all: ${PROGS}
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
11 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
12 ${CC} ${CFLAGS} -o $@ $^
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
13
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
14 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
15 ${CC} ${CFLAGS} -o $@ $^
164
5f23cb3f0f8d gsmefr-dlcap-dec program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 162
diff changeset
16
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
17 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
18 ${CC} ${CFLAGS} -c -o $@ $<
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
19
434
ba5031723ab6 implement amrefr-tseq-enc test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 433
diff changeset
20 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
21 ${CC} ${CFLAGS} -c -o $@ $<
24
94f18b720f1e new debug utility gsmfr-preproc
Mychaela Falconia <falcon@freecalypso.org>
parents: 19
diff changeset
22
437
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
23 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
24 ${CC} ${CFLAGS} -c -o $@ $<
3eadaef8b28f implement amrefr-tseq-dec test program
Mychaela Falconia <falcon@freecalypso.org>
parents: 436
diff changeset
25
17
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
26 install:
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
27 mkdir -p ${INSTBIN}
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
28 install -c ${PROGS} ${INSTBIN}
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
29
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
30 clean:
27
896ce7f1d271 frtest: cn-debug is now gsmfr-max-out
Mychaela Falconia <falcon@freecalypso.org>
parents: 26
diff changeset
31 rm -f *.o *.out ${PROGS}