comparison 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
comparison
equal deleted inserted replaced
589:e414d138c607 590:6b2900fe20f4
1 PROGS= amr-cod-parse amr-cod2ietf amr-hexoa2ietf amr-ietf-parse amr-ietf2cod \ 1 PROGS= amr-cod-parse amr-cod2ietf amr-hex-oa2bwe amr-hexoa2ietf amr-ietf-parse\
2 amr-ietf2hexoa gsm-amr2efr gsm-efr2amr 2 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 OA2BWE_OBJS= oa2bwe.o bwe_conv_common.o
23
22 all: ${PROGS} 24 all: ${PROGS}
23 25
24 amr-cod-parse: ${COD_PARSE_OBJS} 26 amr-cod-parse: ${COD_PARSE_OBJS}
25 ${CC} ${CFLAGS} -o $@ ${COD_PARSE_OBJS} 27 ${CC} ${CFLAGS} -o $@ ${COD_PARSE_OBJS}
26 28
27 amr-cod2ietf: ${COD2IETF_OBJS} 29 amr-cod2ietf: ${COD2IETF_OBJS}
28 ${CC} ${CFLAGS} -o $@ ${COD2IETF_OBJS} 30 ${CC} ${CFLAGS} -o $@ ${COD2IETF_OBJS}
31
32 amr-hex-oa2bwe: ${OA2BWE_OBJS} ${LIBTEST}
33 ${CC} ${CFLAGS} -o $@ ${OA2BWE_OBJS} ${LIBTEST}
29 34
30 amr-hexoa2ietf: ${HEX2IETF_OBJS} ${LIBTEST} 35 amr-hexoa2ietf: ${HEX2IETF_OBJS} ${LIBTEST}
31 ${CC} ${CFLAGS} -o $@ ${HEX2IETF_OBJS} ${LIBTEST} 36 ${CC} ${CFLAGS} -o $@ ${HEX2IETF_OBJS} ${LIBTEST}
32 37
33 amr-ietf-parse: ${IETF_PARSE_OBJS} 38 amr-ietf-parse: ${IETF_PARSE_OBJS}