view amrconv/Makefile @ 282:9ee8ad3d4d30

frtest: rm gsmfr-hand-test and gsmfr-max-out utils These hack programs were never properly documented and were written only as part of a debug chase, in pursuit of a bug that ultimately turned out to be in our then-hacky patch to osmo-bts-sysmo, before beginning of proper patches in Osmocom. These hack programs need to be dropped from the present sw package because they depend on old libgsm, and we are eliminating that dependency.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 14 Apr 2024 05:44:47 +0000
parents 9d59df9b0e4e
children 19f1aa01ea10
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	amr-cod-parse amr-cod2ietf amr-ietf-parse amr-ietf2cod gsm-amr2efr \
	gsm-efr2amr
LIBTEST=../libtest/libtest.a
INSTBIN=/opt/freecalypso/bin

AMR2EFR_OBJS=	amr122bits.o bitmanip.o amr2efr.o
EFR2AMR_OBJS=	amr122bits.o bitmanip.o efr2amr.o

COD_PARSE_OBJS=	amr_common_tbl.o cod-parse.o cod-read.o param_asm.o param_dump.o
IETF_PARSE_OBJS=amr122bits.o amr_bits.o amr_common_tbl.o bitmanip.o \
		ietf-parse.o ietf_common.o if1_unpack.o param_asm.o param_dump.o

COD2IETF_OBJS=	amr122bits.o amr_bits.o amr_common_tbl.o bitmanip.o cod-read.o \
		cod2ietf.o ietf_common.o if1_pack.o
IETF2COD_OBJS=	amr122bits.o amr_bits.o amr_common_tbl.o bitmanip.o ietf2cod.o \
		ietf_common.o if1_unpack.o

all:	${PROGS}

amr-cod-parse:	${COD_PARSE_OBJS}
	${CC} ${CFLAGS} -o $@ ${COD_PARSE_OBJS}

amr-cod2ietf:	${COD2IETF_OBJS}
	${CC} ${CFLAGS} -o $@ ${COD2IETF_OBJS}

amr-ietf-parse:	${IETF_PARSE_OBJS}
	${CC} ${CFLAGS} -o $@ ${IETF_PARSE_OBJS}

amr-ietf2cod:	${IETF2COD_OBJS}
	${CC} ${CFLAGS} -o $@ ${IETF2COD_OBJS}

gsm-amr2efr:	${AMR2EFR_OBJS}
	${CC} ${CFLAGS} -o $@ ${AMR2EFR_OBJS}

gsm-efr2amr:	${EFR2AMR_OBJS} ${LIBTEST}
	${CC} ${CFLAGS} -o $@ ${EFR2AMR_OBJS} ${LIBTEST}

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${INSTBIN}

clean:
	rm -f *.o *.out ${PROGS}