90e655ea4e
These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
20 lines
412 B
Makefile
20 lines
412 B
Makefile
#---------------------------------------------------------------------------
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# last edit-date: [Tue Dec 14 21:17:46 1999]
|
|
#
|
|
#---------------------------------------------------------------------------
|
|
|
|
PROG= dtmfdecode
|
|
|
|
CFLAGS+= -DDEBUG
|
|
|
|
# libm is only necessary if USE_COS is defined in the source
|
|
#LDADD= -lm
|
|
|
|
test: ${PROG}
|
|
uudecode -p < dtmfsounds.al.uu | ./${PROG}
|
|
|
|
.include <bsd.prog.mk>
|