view dev/Makefile @ 11:a3aa152c4653

libtest: pcmwrite helper function and module
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 20 Nov 2022 00:31:42 +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}