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