diff amrconv/Makefile @ 591:2f1e91dd552b

amrconv: new program amr-hex-bwe2oa
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 06 Nov 2025 23:19:57 +0000
parents 6b2900fe20f4
children fd6a394ab4cd
line wrap: on
line diff
--- a/amrconv/Makefile	Thu Nov 06 22:42:09 2025 +0000
+++ b/amrconv/Makefile	Thu Nov 06 23:19:57 2025 +0000
@@ -1,5 +1,5 @@
-PROGS=	amr-cod-parse amr-cod2ietf amr-hex-oa2bwe amr-hexoa2ietf amr-ietf-parse\
-	amr-ietf2cod amr-ietf2hexoa gsm-amr2efr gsm-efr2amr
+PROGS=	amr-cod-parse amr-cod2ietf amr-hex-bwe2oa 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,7 @@
 HEX2IETF_OBJS=	hex2ietf.o ietf_common.o
 IETF2HEX_OBJS=	ietf2hex.o ietf_common.o
 
+BWE2OA_OBJS=	bwe2oa.o bwe_conv_common.o
 OA2BWE_OBJS=	oa2bwe.o bwe_conv_common.o
 
 all:	${PROGS}
@@ -29,6 +30,9 @@
 amr-cod2ietf:	${COD2IETF_OBJS}
 	${CC} ${CFLAGS} -o $@ ${COD2IETF_OBJS}
 
+amr-hex-bwe2oa:	${BWE2OA_OBJS} ${LIBTEST}
+	${CC} ${CFLAGS} -o $@ ${BWE2OA_OBJS} ${LIBTEST}
+
 amr-hex-oa2bwe:	${OA2BWE_OBJS} ${LIBTEST}
 	${CC} ${CFLAGS} -o $@ ${OA2BWE_OBJS} ${LIBTEST}