FreeCalypso > hg > gsm-codec-lib
comparison amrefr/Makefile @ 438:1bf1bbcef763
amrefr: implement amrefr-encode-r utility
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 08 May 2024 23:43:26 +0000 |
parents | 3eadaef8b28f |
children | 65d20172e92a |
comparison
equal
deleted
inserted
replaced
437:3eadaef8b28f | 438:1bf1bbcef763 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= amrefr-tseq-dec amrefr-tseq-enc | 3 PROGS= amrefr-encode-r amrefr-tseq-dec amrefr-tseq-enc |
4 LIBEFR= ../libgsmefr/libgsmefr.a | 4 LIBEFR= ../libgsmefr/libgsmefr.a |
5 LIBAMR= ../libtwamr/libtwamr.a | 5 LIBAMR= ../libtwamr/libtwamr.a |
6 LIBTEST=../libtest/libtest.a | |
6 LIBS= ${LIBEFR} ${LIBAMR} | 7 LIBS= ${LIBEFR} ${LIBAMR} |
8 LIBST= ${LIBEFR} ${LIBAMR} ${LIBTEST} | |
7 INSTBIN=/opt/freecalypso/bin | 9 INSTBIN=/opt/freecalypso/bin |
8 | 10 |
9 all: ${PROGS} | 11 all: ${PROGS} |
12 | |
13 amrefr-encode-r: encode-r.o ${LIBST} | |
14 ${CC} ${CFLAGS} -o $@ $^ | |
10 | 15 |
11 amrefr-tseq-dec: tseq-dec.o tseq-bit-rd.o tseq-pcm-out.o ${LIBS} | 16 amrefr-tseq-dec: tseq-dec.o tseq-bit-rd.o tseq-pcm-out.o ${LIBS} |
12 ${CC} ${CFLAGS} -o $@ $^ | 17 ${CC} ${CFLAGS} -o $@ $^ |
13 | 18 |
14 amrefr-tseq-enc: tseq-enc.o tseq-enc-common.o ${LIBS} | 19 amrefr-tseq-enc: tseq-enc.o tseq-enc-common.o ${LIBS} |