FreeCalypso > hg > gsm-codec-lib
diff amrconv/Makefile @ 590:6b2900fe20f4
amrconv: new program amr-hex-oa2bwe
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 06 Nov 2025 22:42:09 +0000 |
| parents | e414d138c607 |
| children | 2f1e91dd552b |
line wrap: on
line diff
--- a/amrconv/Makefile Thu Nov 06 21:18:59 2025 +0000 +++ b/amrconv/Makefile Thu Nov 06 22:42:09 2025 +0000 @@ -1,5 +1,5 @@ -PROGS= amr-cod-parse amr-cod2ietf amr-hexoa2ietf amr-ietf-parse amr-ietf2cod \ - amr-ietf2hexoa gsm-amr2efr gsm-efr2amr +PROGS= amr-cod-parse amr-cod2ietf amr-hex-oa2bwe amr-hexoa2ietf amr-ietf-parse\ + amr-ietf2cod amr-ietf2hexoa gsm-amr2efr gsm-efr2amr LIBTEST=../libtest/libtest.a include ../config.defs @@ -19,6 +19,8 @@ HEX2IETF_OBJS= hex2ietf.o ietf_common.o IETF2HEX_OBJS= ietf2hex.o ietf_common.o +OA2BWE_OBJS= oa2bwe.o bwe_conv_common.o + all: ${PROGS} amr-cod-parse: ${COD_PARSE_OBJS} @@ -27,6 +29,9 @@ amr-cod2ietf: ${COD2IETF_OBJS} ${CC} ${CFLAGS} -o $@ ${COD2IETF_OBJS} +amr-hex-oa2bwe: ${OA2BWE_OBJS} ${LIBTEST} + ${CC} ${CFLAGS} -o $@ ${OA2BWE_OBJS} ${LIBTEST} + amr-hexoa2ietf: ${HEX2IETF_OBJS} ${LIBTEST} ${CC} ${CFLAGS} -o $@ ${HEX2IETF_OBJS} ${LIBTEST}
