FreeCalypso > hg > gsm-codec-lib
view dev/Makefile @ 31:19a90fa1f608
libgsmefr: implement SID classification
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 23 Nov 2022 08:40:08 +0000 |
parents | 6780b23654bd |
children | 9639a44ae2e7 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= gsm0611-silence-fr DATAOUT=gsm0611-silence-fr.out all: ${PROGS} ${DATAOUT} gsm0611-silence-fr: gsm0611-silence-fr.c ${CC} ${CFLAGS} -o $@ $@.c -lgsm gsm0611-silence-fr.out: gsm0611-silence-fr ./gsm0611-silence-fr > $@ clean: rm -f *.o *.out ${PROGS}