FreeCalypso > hg > gsm-codec-lib
comparison efrtest/Makefile @ 121:b51295fcbbae
gsmefr-encode utility written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 10 Dec 2022 03:17:58 +0000 |
parents | 5a63294fa321 |
children | 615f144b52c6 |
comparison
equal
deleted
inserted
replaced
120:bd832a456339 | 121:b51295fcbbae |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= gsmefr-cod-parse gsmefr-decode gsmefr-etsi-dec gsmefr-etsi-enc \ | 3 PROGS= gsmefr-cod-parse gsmefr-decode gsmefr-encode gsmefr-etsi-dec \ |
4 gsmefr-rec2etsi | 4 gsmefr-etsi-enc gsmefr-rec2etsi |
5 LIBEFR= ../libgsmefr/libgsmefr.a | 5 LIBEFR= ../libgsmefr/libgsmefr.a |
6 LIBTEST=../libtest/libtest.a | 6 LIBTEST=../libtest/libtest.a |
7 INSTBIN=/opt/freecalypso/bin | 7 INSTBIN=/opt/freecalypso/bin |
8 | 8 |
9 all: ${PROGS} | 9 all: ${PROGS} |
11 gsmefr-cod-parse: cod-parse.o ${LIBEFR} | 11 gsmefr-cod-parse: cod-parse.o ${LIBEFR} |
12 ${CC} ${CFLAGS} -o $@ cod-parse.o ${LIBEFR} | 12 ${CC} ${CFLAGS} -o $@ cod-parse.o ${LIBEFR} |
13 | 13 |
14 gsmefr-decode: decode.o ${LIBTEST} ${LIBEFR} | 14 gsmefr-decode: decode.o ${LIBTEST} ${LIBEFR} |
15 ${CC} ${CFLAGS} -o $@ decode.o ${LIBTEST} ${LIBEFR} | 15 ${CC} ${CFLAGS} -o $@ decode.o ${LIBTEST} ${LIBEFR} |
16 | |
17 gsmefr-encode: encode.o ${LIBTEST} ${LIBEFR} | |
18 ${CC} ${CFLAGS} -o $@ encode.o ${LIBTEST} ${LIBEFR} | |
16 | 19 |
17 gsmefr-etsi-dec: etsi-dec.o ${LIBEFR} | 20 gsmefr-etsi-dec: etsi-dec.o ${LIBEFR} |
18 ${CC} ${CFLAGS} -o $@ etsi-dec.o ${LIBEFR} | 21 ${CC} ${CFLAGS} -o $@ etsi-dec.o ${LIBEFR} |
19 | 22 |
20 gsmefr-etsi-enc: etsi-enc.o ${LIBEFR} | 23 gsmefr-etsi-enc: etsi-enc.o ${LIBEFR} |