FreeCalypso > hg > gsm-codec-lib
comparison dev/Makefile @ 247:56d3fbacd115
dev: new program xmaxc-tables
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 12 May 2023 02:04:42 +0000 |
parents | bbdefd2ef950 |
children | e4ca04586118 |
comparison
equal
deleted
inserted
replaced
246:a55fcc8b6daf | 247:56d3fbacd115 |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= a2s-regen efr-bit-packing efr-sid-insert efr-tidsp gsm0611-silence-fr \ | 3 PROGS= a2s-regen efr-bit-packing efr-sid-insert efr-tidsp gsm0611-silence-fr \ |
4 mk-256bytes s2a-regen s2u-regen s2u-regen-plus4 u2s-regen | 4 mk-256bytes s2a-regen s2u-regen s2u-regen-plus4 u2s-regen xmaxc-tables |
5 DATAOUT=a2s-regen.out efr-bit-packing.out efr-sid-insert.out efr-tidsp.out \ | 5 DATAOUT=a2s-regen.out efr-bit-packing.out efr-sid-insert.out efr-tidsp.out \ |
6 gsm0611-silence-fr.out s2a-regen.out s2u-regen.out s2u-regen-plus4.out \ | 6 gsm0611-silence-fr.out s2a-regen.out s2u-regen.out s2u-regen-plus4.out \ |
7 u2s-regen.out | 7 u2s-regen.out xmaxc-tables.out |
8 | 8 |
9 all: ${PROGS} ${DATAOUT} | 9 all: ${PROGS} ${DATAOUT} |
10 | 10 |
11 a2s-regen: a2s-regen.c | 11 a2s-regen: a2s-regen.c |
12 ${CC} ${CFLAGS} -o $@ $@.c | 12 ${CC} ${CFLAGS} -o $@ $@.c |
63 ${CC} ${CFLAGS} -o $@ $@.c | 63 ${CC} ${CFLAGS} -o $@ $@.c |
64 | 64 |
65 u2s-regen.out: u2s-regen | 65 u2s-regen.out: u2s-regen |
66 ./u2s-regen > $@ | 66 ./u2s-regen > $@ |
67 | 67 |
68 xmaxc-tables: xmaxc-tables.c | |
69 ${CC} ${CFLAGS} -o $@ $@.c | |
70 | |
71 xmaxc-tables.out: xmaxc-tables | |
72 ./xmaxc-tables > $@ | |
73 | |
68 clean: | 74 clean: |
69 rm -f *.o *.out ${PROGS} | 75 rm -f *.o *.out ${PROGS} |