FreeCalypso > hg > gsm-codec-lib
comparison efrtest/Makefile @ 115:5a63294fa321
gsmefr-cod-parse test program written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 29 Nov 2022 22:18:33 +0000 |
parents | ff0372186b59 |
children | b51295fcbbae |
comparison
equal
deleted
inserted
replaced
114:ff0372186b59 | 115:5a63294fa321 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= gsmefr-decode gsmefr-etsi-dec gsmefr-etsi-enc gsmefr-rec2etsi | 3 PROGS= gsmefr-cod-parse gsmefr-decode gsmefr-etsi-dec gsmefr-etsi-enc \ |
4 gsmefr-rec2etsi | |
4 LIBEFR= ../libgsmefr/libgsmefr.a | 5 LIBEFR= ../libgsmefr/libgsmefr.a |
5 LIBTEST=../libtest/libtest.a | 6 LIBTEST=../libtest/libtest.a |
6 INSTBIN=/opt/freecalypso/bin | 7 INSTBIN=/opt/freecalypso/bin |
7 | 8 |
8 all: ${PROGS} | 9 all: ${PROGS} |
10 | |
11 gsmefr-cod-parse: cod-parse.o ${LIBEFR} | |
12 ${CC} ${CFLAGS} -o $@ cod-parse.o ${LIBEFR} | |
9 | 13 |
10 gsmefr-decode: decode.o ${LIBTEST} ${LIBEFR} | 14 gsmefr-decode: decode.o ${LIBTEST} ${LIBEFR} |
11 ${CC} ${CFLAGS} -o $@ decode.o ${LIBTEST} ${LIBEFR} | 15 ${CC} ${CFLAGS} -o $@ decode.o ${LIBTEST} ${LIBEFR} |
12 | 16 |
13 gsmefr-etsi-dec: etsi-dec.o ${LIBEFR} | 17 gsmefr-etsi-dec: etsi-dec.o ${LIBEFR} |