FreeCalypso > hg > gsm-codec-lib
diff frtest/Makefile @ 153:14b627682458
gsmfr-decode-r utility put together
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 14 Dec 2022 23:11:20 +0000 |
parents | be57e06bed84 |
children | 9814041e8096 |
line wrap: on
line diff
--- a/frtest/Makefile Wed Dec 14 22:40:31 2022 +0000 +++ b/frtest/Makefile Wed Dec 14 23:11:20 2022 +0000 @@ -1,7 +1,7 @@ CC= gcc CFLAGS= -O2 -PROGS= gsmfr-cvt-dlcap gsmfr-decode gsmfr-encode gsmfr-hand-test gsmfr-max-out\ - gsmfr-preproc +PROGS= gsmfr-cvt-dlcap gsmfr-decode gsmfr-decode-r gsmfr-encode \ + gsmfr-hand-test gsmfr-max-out gsmfr-preproc LIBPP= ../libgsmfrp/libgsmfrp.a LIBTEST=../libtest/libtest.a LIBDEC= ${LIBTEST} ${LIBPP} @@ -17,6 +17,9 @@ gsmfr-decode: decode.o ${LIBDEC} ${CC} ${CFLAGS} -o $@ decode.o ${LIBDEC} -lgsm +gsmfr-decode-r: decode-r.o ${LIBDEC} + ${CC} ${CFLAGS} -o $@ decode-r.o ${LIBDEC} -lgsm + gsmfr-encode: encode.o ${LIBTEST} ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm