FreeCalypso > hg > gsm-codec-lib
diff amrconv/Makefile @ 589:e414d138c607
amrconv: new program amr-ietf2hexoa
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 06 Nov 2025 21:18:59 +0000 |
| parents | 4d6ccca0c687 |
| children | 6b2900fe20f4 |
line wrap: on
line diff
--- a/amrconv/Makefile Thu Nov 06 20:12:15 2025 +0000 +++ b/amrconv/Makefile Thu Nov 06 21:18:59 2025 +0000 @@ -1,5 +1,5 @@ PROGS= amr-cod-parse amr-cod2ietf amr-hexoa2ietf amr-ietf-parse amr-ietf2cod \ - gsm-amr2efr gsm-efr2amr + amr-ietf2hexoa gsm-amr2efr gsm-efr2amr LIBTEST=../libtest/libtest.a include ../config.defs @@ -17,6 +17,7 @@ ietf_common.o if1_unpack.o HEX2IETF_OBJS= hex2ietf.o ietf_common.o +IETF2HEX_OBJS= ietf2hex.o ietf_common.o all: ${PROGS} @@ -35,6 +36,9 @@ amr-ietf2cod: ${IETF2COD_OBJS} ${CC} ${CFLAGS} -o $@ ${IETF2COD_OBJS} +amr-ietf2hexoa: ${IETF2HEX_OBJS} ${LIBTEST} + ${CC} ${CFLAGS} -o $@ ${IETF2HEX_OBJS} ${LIBTEST} + gsm-amr2efr: ${AMR2EFR_OBJS} ${CC} ${CFLAGS} -o $@ ${AMR2EFR_OBJS}
