view miscutil/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 3816ba89a5a0
children 19f1aa01ea10
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	gsmrec-dump pcm16-check13 pcm16-raw2wav pcm16-to-alaw pcm16-to-ulaw \
	pcm16-wav2raw pcm8-to-pcm16
LIBEFR=	../libgsmefr/libgsmefr.a ../libgsmfr2/libgsmfr2.a
LIBTEST=../libtest/libtest.a
INSTBIN=/opt/freecalypso/bin

all:	${PROGS}

gsmrec-dump:	gsmrec-dump.o ${LIBTEST} ${LIBEFR}
	${CC} ${CFLAGS} -o $@ gsmrec-dump.o ${LIBTEST} ${LIBEFR}

pcm16-check13:	pcm16-check13.c
	${CC} ${CFLAGS} -o $@ $@.c

pcm16-raw2wav:	raw2wav.o ${LIBTEST}
	${CC} ${CFLAGS} -o $@ raw2wav.o ${LIBTEST}

pcm16-to-alaw:	pcm16-to-alaw.c
	${CC} ${CFLAGS} -o $@ $@.c

pcm16-to-ulaw:	pcm16-to-ulaw.c
	${CC} ${CFLAGS} -o $@ $@.c

pcm16-wav2raw:	wav2raw.o ${LIBTEST}
	${CC} ${CFLAGS} -o $@ wav2raw.o ${LIBTEST}

pcm8-to-pcm16:	pcm8-to-pcm16.c
	${CC} ${CFLAGS} -o $@ $@.c

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

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