comparison frtest/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 6de564ef70d3
children 25649b3a83e9
comparison
equal deleted inserted replaced
281:3816ba89a5a0 282:9ee8ad3d4d30
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= gsmfr-cod2std gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx \ 3 PROGS= gsmfr-cod2std gsmfr-decode gsmfr-decode-r gsmfr-dlcap-gsmx \
4 gsmfr-dlcap-parse gsmfr-encode gsmfr-encode-r gsmfr-hand-test \ 4 gsmfr-dlcap-parse gsmfr-encode gsmfr-encode-r gsmfr-preproc
5 gsmfr-max-out gsmfr-preproc
6 LIBPP= ../libgsmfrp/libgsmfrp.a 5 LIBPP= ../libgsmfrp/libgsmfrp.a
7 LIBTEST=../libtest/libtest.a 6 LIBTEST=../libtest/libtest.a
8 LIBDEC= ${LIBTEST} ${LIBPP} 7 LIBDEC= ${LIBTEST} ${LIBPP}
9 INSTBIN=/opt/freecalypso/bin 8 INSTBIN=/opt/freecalypso/bin
10 9
29 ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm 28 ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} -lgsm
30 29
31 gsmfr-encode-r: encode-r.o ${LIBTEST} 30 gsmfr-encode-r: encode-r.o ${LIBTEST}
32 ${CC} ${CFLAGS} -o $@ encode-r.o ${LIBTEST} -lgsm 31 ${CC} ${CFLAGS} -o $@ encode-r.o ${LIBTEST} -lgsm
33 32
34 gsmfr-hand-test: hand-test.o
35 ${CC} ${CFLAGS} -o $@ hand-test.o -lgsm
36
37 gsmfr-max-out: max-out.o ${LIBDEC}
38 ${CC} ${CFLAGS} -o $@ max-out.o ${LIBDEC} -lgsm
39
40 gsmfr-preproc: preproc.o ${LIBDEC} 33 gsmfr-preproc: preproc.o ${LIBDEC}
41 ${CC} ${CFLAGS} -o $@ preproc.o ${LIBDEC} 34 ${CC} ${CFLAGS} -o $@ preproc.o ${LIBDEC}
42 35
43 install: 36 install:
44 mkdir -p ${INSTBIN} 37 mkdir -p ${INSTBIN}