FreeCalypso > hg > gsm-codec-lib
diff dev/Makefile @ 138:68215020852b
dev: add efr-tidsp table generator program
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 13 Dec 2022 06:32:25 +0000 |
parents | 3b5958f28a40 |
children | 842136bbd0da |
line wrap: on
line diff
--- a/dev/Makefile Tue Dec 13 04:37:45 2022 +0000 +++ b/dev/Makefile Tue Dec 13 06:32:25 2022 +0000 @@ -1,7 +1,8 @@ CC= gcc CFLAGS= -O2 -PROGS= efr-bit-packing efr-sid-insert gsm0611-silence-fr -DATAOUT=efr-bit-packing.out efr-sid-insert.out gsm0611-silence-fr.out +PROGS= efr-bit-packing efr-sid-insert efr-tidsp gsm0611-silence-fr +DATAOUT=efr-bit-packing.out efr-sid-insert.out efr-tidsp.out \ + gsm0611-silence-fr.out all: ${PROGS} ${DATAOUT} @@ -17,6 +18,12 @@ efr-sid-insert.out: efr-sid-insert ./efr-sid-insert > $@ +efr-tidsp: efr-tidsp.c + ${CC} ${CFLAGS} -o $@ $@.c + +efr-tidsp.out: efr-tidsp + ./efr-tidsp > $@ + gsm0611-silence-fr: gsm0611-silence-fr.c ${CC} ${CFLAGS} -o $@ $@.c -lgsm