FreeCalypso > hg > gsm-codec-lib
comparison 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 |
comparison
equal
deleted
inserted
replaced
433:51678b070c7a | 434:ba5031723ab6 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= amrefr-tseq-enc | |
4 LIBEFR= ../libgsmefr/libgsmefr.a | |
5 LIBAMR= ../libtwamr/libtwamr.a | |
6 INSTBIN=/opt/freecalypso/bin | |
7 | |
8 all: ${PROGS} | |
9 | |
10 amrefr-tseq-enc: tseq-enc.o tseq-enc-common.o ${LIBEFR} ${LIBAMR} | |
11 ${CC} ${CFLAGS} -o $@ tseq-enc.o tseq-enc-common.o ${LIBEFR} ${LIBAMR} | |
12 | |
13 tseq-enc-common.o: ../efrtest/etsi-enc-common.c | |
14 ${CC} ${CFLAGS} -c -o $@ $< | |
15 | |
16 install: | |
17 mkdir -p ${INSTBIN} | |
18 install -c ${PROGS} ${INSTBIN} | |
19 | |
20 clean: | |
21 rm -f *.o *.out ${PROGS} |