FreeCalypso > hg > gsm-codec-lib
diff frtest/Makefile @ 167:80c93ef82a51
gsmfr-dlcap-parse utility written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Dec 2022 08:38:36 +0000 |
parents | ef3ea52a190f |
children | 6de564ef70d3 |
line wrap: on
line diff
--- a/frtest/Makefile Fri Dec 16 08:23:32 2022 +0000 +++ b/frtest/Makefile Fri Dec 16 08:38:36 2022 +0000 @@ -1,7 +1,7 @@ CC= gcc CFLAGS= -O2 -PROGS= gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx gsmfr-encode \ - gsmfr-encode-r gsmfr-hand-test gsmfr-max-out gsmfr-preproc +PROGS= gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx gsmfr-dlcap-parse \ + gsmfr-encode gsmfr-encode-r gsmfr-hand-test gsmfr-max-out gsmfr-preproc LIBPP= ../libgsmfrp/libgsmfrp.a LIBTEST=../libtest/libtest.a LIBDEC= ${LIBTEST} ${LIBPP} @@ -18,6 +18,9 @@ gsmfr-dlcap-gsmx: dlcap-gsmx.o tidsp.o ${LIBTEST} ${CC} ${CFLAGS} -o $@ dlcap-gsmx.o tidsp.o ${LIBTEST} +gsmfr-dlcap-parse: dlcap-parse.o tidsp.o ${LIBDEC} + ${CC} ${CFLAGS} -o $@ dlcap-parse.o tidsp.o ${LIBDEC} -lgsm + gsmfr-encode: encode.o ${LIBTEST} ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm