comparison 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
comparison
equal deleted inserted replaced
590:6b2900fe20f4 591:2f1e91dd552b
1 PROGS= amr-cod-parse amr-cod2ietf amr-hex-oa2bwe amr-hexoa2ietf amr-ietf-parse\ 1 PROGS= amr-cod-parse amr-cod2ietf amr-hex-bwe2oa amr-hex-oa2bwe amr-hexoa2ietf\
2 amr-ietf2cod amr-ietf2hexoa gsm-amr2efr gsm-efr2amr 2 amr-ietf-parse amr-ietf2cod amr-ietf2hexoa gsm-amr2efr gsm-efr2amr
3 LIBTEST=../libtest/libtest.a 3 LIBTEST=../libtest/libtest.a
4 4
5 include ../config.defs 5 include ../config.defs
6 6
7 AMR2EFR_OBJS= amr122bits.o bitmanip.o amr2efr.o 7 AMR2EFR_OBJS= amr122bits.o bitmanip.o amr2efr.o
17 ietf_common.o if1_unpack.o 17 ietf_common.o if1_unpack.o
18 18
19 HEX2IETF_OBJS= hex2ietf.o ietf_common.o 19 HEX2IETF_OBJS= hex2ietf.o ietf_common.o
20 IETF2HEX_OBJS= ietf2hex.o ietf_common.o 20 IETF2HEX_OBJS= ietf2hex.o ietf_common.o
21 21
22 BWE2OA_OBJS= bwe2oa.o bwe_conv_common.o
22 OA2BWE_OBJS= oa2bwe.o bwe_conv_common.o 23 OA2BWE_OBJS= oa2bwe.o bwe_conv_common.o
23 24
24 all: ${PROGS} 25 all: ${PROGS}
25 26
26 amr-cod-parse: ${COD_PARSE_OBJS} 27 amr-cod-parse: ${COD_PARSE_OBJS}
27 ${CC} ${CFLAGS} -o $@ ${COD_PARSE_OBJS} 28 ${CC} ${CFLAGS} -o $@ ${COD_PARSE_OBJS}
28 29
29 amr-cod2ietf: ${COD2IETF_OBJS} 30 amr-cod2ietf: ${COD2IETF_OBJS}
30 ${CC} ${CFLAGS} -o $@ ${COD2IETF_OBJS} 31 ${CC} ${CFLAGS} -o $@ ${COD2IETF_OBJS}
32
33 amr-hex-bwe2oa: ${BWE2OA_OBJS} ${LIBTEST}
34 ${CC} ${CFLAGS} -o $@ ${BWE2OA_OBJS} ${LIBTEST}
31 35
32 amr-hex-oa2bwe: ${OA2BWE_OBJS} ${LIBTEST} 36 amr-hex-oa2bwe: ${OA2BWE_OBJS} ${LIBTEST}
33 ${CC} ${CFLAGS} -o $@ ${OA2BWE_OBJS} ${LIBTEST} 37 ${CC} ${CFLAGS} -o $@ ${OA2BWE_OBJS} ${LIBTEST}
34 38
35 amr-hexoa2ietf: ${HEX2IETF_OBJS} ${LIBTEST} 39 amr-hexoa2ietf: ${HEX2IETF_OBJS} ${LIBTEST}