FreeCalypso > hg > gsm-codec-lib
diff 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 |
line wrap: on
line diff
--- a/amrefr/Makefile Wed May 08 23:43:26 2024 +0000 +++ b/amrefr/Makefile Thu May 09 00:12:33 2024 +0000 @@ -1,6 +1,6 @@ CC= gcc CFLAGS= -O2 -PROGS= amrefr-encode-r amrefr-tseq-dec amrefr-tseq-enc +PROGS= amrefr-decode-r amrefr-encode-r amrefr-tseq-dec amrefr-tseq-enc LIBEFR= ../libgsmefr/libgsmefr.a LIBAMR= ../libtwamr/libtwamr.a LIBTEST=../libtest/libtest.a @@ -10,6 +10,9 @@ all: ${PROGS} +amrefr-decode-r: decode-r.o ${LIBST} + ${CC} ${CFLAGS} -o $@ $^ + amrefr-encode-r: encode-r.o ${LIBST} ${CC} ${CFLAGS} -o $@ $^