comparison 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
comparison
equal deleted inserted replaced
8:eaf0e8f81a22 9:ff535725e01f
1 CC= gcc
2 CFLAGS= -O2
3 PROG= g711-tone-detect
4
5 all: ${PROG}
6
7 ${PROG}: ${PROG}.c
8 ${CC} ${CFLAGS} -o $@ $@.c -lspandsp -lm
9
10 install:
11
12 clean:
13 rm -f *.o ${PROG} errs