diff tone-detect/Makefile @ 9:ff535725e01f

g711-tone-detect program written
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 07 Mar 2024 00:05:44 -0800
parents
children 2cdbd574bba6
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tone-detect/Makefile	Thu Mar 07 00:05:44 2024 -0800
@@ -0,0 +1,13 @@
+CC=	gcc
+CFLAGS=	-O2
+PROG=	g711-tone-detect
+
+all:	${PROG}
+
+${PROG}:	${PROG}.c
+	${CC} ${CFLAGS} -o $@ $@.c -lspandsp -lm
+
+install:
+
+clean:
+	rm -f *.o ${PROG} errs