annotate frtest/Makefile @ 296:e0d42e87da96

frtest: new utility gsmfr-decode-rb
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 14 Apr 2024 20:36:29 +0000
parents 09cc95b7d426
children e80632ccb745
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
296
e0d42e87da96 frtest: new utility gsmfr-decode-rb
Mychaela Falconia <falcon@freecalypso.org>
parents: 290
diff changeset
3 PROGS= gsmfr-cod2std gsmfr-decode gsmfr-decode-r gsmfr-decode-rb \
e0d42e87da96 frtest: new utility gsmfr-decode-rb
Mychaela Falconia <falcon@freecalypso.org>
parents: 290
diff changeset
4 gsmfr-dlcap-gsmx gsmfr-dlcap-parse gsmfr-encode gsmfr-encode-r \
e0d42e87da96 frtest: new utility gsmfr-decode-rb
Mychaela Falconia <falcon@freecalypso.org>
parents: 290
diff changeset
5 gsmfr-preproc
283
25649b3a83e9 gsmfr-cod2std: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 282
diff changeset
6 LIBFR2= ../libgsmfr2/libgsmfr2.a
14
69ed7af28473 gsmfr-encode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 12
diff changeset
7 LIBTEST=../libtest/libtest.a
17
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
8 INSTBIN=/opt/freecalypso/bin
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9
27
896ce7f1d271 frtest: cn-debug is now gsmfr-max-out
Mychaela Falconia <falcon@freecalypso.org>
parents: 26
diff changeset
10 all: ${PROGS}
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
283
25649b3a83e9 gsmfr-cod2std: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 282
diff changeset
12 gsmfr-cod2std: cod2std.o ${LIBFR2}
25649b3a83e9 gsmfr-cod2std: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 282
diff changeset
13 ${CC} ${CFLAGS} -o $@ cod2std.o ${LIBFR2}
245
6de564ef70d3 frtest: new program gsmfr-cod2std
Mychaela Falconia <falcon@freecalypso.org>
parents: 167
diff changeset
14
284
8d3cfa65a6c2 gsmfr-decode: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 283
diff changeset
15 gsmfr-decode: decode.o ${LIBTEST} ${LIBFR2}
8d3cfa65a6c2 gsmfr-decode: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 283
diff changeset
16 ${CC} ${CFLAGS} -o $@ decode.o ${LIBTEST} ${LIBFR2}
14
69ed7af28473 gsmfr-encode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents: 12
diff changeset
17
285
cfa3006a66da gsmfr-decode-r: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 284
diff changeset
18 gsmfr-decode-r: decode-r.o ${LIBTEST} ${LIBFR2}
cfa3006a66da gsmfr-decode-r: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 284
diff changeset
19 ${CC} ${CFLAGS} -o $@ decode-r.o ${LIBTEST} ${LIBFR2}
153
14b627682458 gsmfr-decode-r utility put together
Mychaela Falconia <falcon@freecalypso.org>
parents: 139
diff changeset
20
296
e0d42e87da96 frtest: new utility gsmfr-decode-rb
Mychaela Falconia <falcon@freecalypso.org>
parents: 290
diff changeset
21 gsmfr-decode-rb: decode-rb.o ${LIBTEST} ${LIBFR2}
e0d42e87da96 frtest: new utility gsmfr-decode-rb
Mychaela Falconia <falcon@freecalypso.org>
parents: 290
diff changeset
22 ${CC} ${CFLAGS} -o $@ decode-rb.o ${LIBTEST} ${LIBFR2}
e0d42e87da96 frtest: new utility gsmfr-decode-rb
Mychaela Falconia <falcon@freecalypso.org>
parents: 290
diff changeset
23
165
ef3ea52a190f rename gsmfr-cvt-dlcap to gsmfr-dlcap-gsmx
Mychaela Falconia <falcon@freecalypso.org>
parents: 155
diff changeset
24 gsmfr-dlcap-gsmx: dlcap-gsmx.o tidsp.o ${LIBTEST}
ef3ea52a190f rename gsmfr-cvt-dlcap to gsmfr-dlcap-gsmx
Mychaela Falconia <falcon@freecalypso.org>
parents: 155
diff changeset
25 ${CC} ${CFLAGS} -o $@ dlcap-gsmx.o tidsp.o ${LIBTEST}
ef3ea52a190f rename gsmfr-cvt-dlcap to gsmfr-dlcap-gsmx
Mychaela Falconia <falcon@freecalypso.org>
parents: 155
diff changeset
26
286
251aed72925e gsmfr-dlcap-parse: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 285
diff changeset
27 gsmfr-dlcap-parse: dlcap-parse.o tidsp.o ${LIBTEST} ${LIBFR2}
251aed72925e gsmfr-dlcap-parse: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 285
diff changeset
28 ${CC} ${CFLAGS} -o $@ dlcap-parse.o tidsp.o ${LIBTEST} ${LIBFR2}
167
80c93ef82a51 gsmfr-dlcap-parse utility written
Mychaela Falconia <falcon@freecalypso.org>
parents: 165
diff changeset
29
287
f00925b533b7 gsmfr-encode: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 286
diff changeset
30 gsmfr-encode: encode.o ${LIBTEST} ${LIBFR2}
f00925b533b7 gsmfr-encode: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 286
diff changeset
31 ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} ${LIBFR2}
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
32
288
e0b46ac2c326 gsmfr-encode-r: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 287
diff changeset
33 gsmfr-encode-r: encode-r.o ${LIBTEST} ${LIBFR2}
e0b46ac2c326 gsmfr-encode-r: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 287
diff changeset
34 ${CC} ${CFLAGS} -o $@ encode-r.o ${LIBTEST} ${LIBFR2}
155
9814041e8096 gsmfr-encode-r utility put together
Mychaela Falconia <falcon@freecalypso.org>
parents: 153
diff changeset
35
289
18229558c8bf gsmfr-preproc: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 288
diff changeset
36 gsmfr-preproc: preproc.o ${LIBTEST} ${LIBFR2}
18229558c8bf gsmfr-preproc: convert to libgsmfr2
Mychaela Falconia <falcon@freecalypso.org>
parents: 288
diff changeset
37 ${CC} ${CFLAGS} -o $@ preproc.o ${LIBTEST} ${LIBFR2}
24
94f18b720f1e new debug utility gsmfr-preproc
Mychaela Falconia <falcon@freecalypso.org>
parents: 19
diff changeset
38
17
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
39 install:
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
40 mkdir -p ${INSTBIN}
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
41 install -c ${PROGS} ${INSTBIN}
68a7e86c9868 frtest/Makefile: add install
Mychaela Falconia <falcon@freecalypso.org>
parents: 14
diff changeset
42
12
f88817a233fb gsmfr-decode test program written
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 clean:
27
896ce7f1d271 frtest: cn-debug is now gsmfr-max-out
Mychaela Falconia <falcon@freecalypso.org>
parents: 26
diff changeset
44 rm -f *.o *.out ${PROGS}