diff options
author | obrien <obrien@FreeBSD.org> | 2001-07-20 04:23:13 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-07-20 04:23:13 +0000 |
commit | be022bb715b9d24bfff5583de1df5d295f03509c (patch) | |
tree | dfa391290c3033d362c2aad5d7da97a60f513a3b /usr.sbin/i4b | |
parent | a9a7a5e9d63f8a71f1d3dfe0e1ed1a28ab589215 (diff) | |
download | FreeBSD-src-be022bb715b9d24bfff5583de1df5d295f03509c.zip FreeBSD-src-be022bb715b9d24bfff5583de1df5d295f03509c.tar.gz |
Remove GCC'isms in CFLAGS.
Diffstat (limited to 'usr.sbin/i4b')
-rw-r--r-- | usr.sbin/i4b/dtmfdecode/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/i4b/g711conv/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/i4b/isdntrace/Makefile | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/i4b/dtmfdecode/Makefile b/usr.sbin/i4b/dtmfdecode/Makefile index 3413ad2..e746f91 100644 --- a/usr.sbin/i4b/dtmfdecode/Makefile +++ b/usr.sbin/i4b/dtmfdecode/Makefile @@ -11,7 +11,7 @@ PROG = dtmfdecode # libm is only necessary if USE_COS is defined in the source #LDADD += -lm -CFLAGS += -Wall -DDEBUG +CFLAGS += -DDEBUG test: ${PROG} uudecode -p < dtmfsounds.al.uu | ./${PROG} diff --git a/usr.sbin/i4b/g711conv/Makefile b/usr.sbin/i4b/g711conv/Makefile index f5f86c3..9f9ac06 100644 --- a/usr.sbin/i4b/g711conv/Makefile +++ b/usr.sbin/i4b/g711conv/Makefile @@ -7,6 +7,5 @@ #--------------------------------------------------------------------------- PROG = g711conv -CFLAGS += -Wall .include <bsd.prog.mk> diff --git a/usr.sbin/i4b/isdntrace/Makefile b/usr.sbin/i4b/isdntrace/Makefile index fe844e6..8cd8edf 100644 --- a/usr.sbin/i4b/isdntrace/Makefile +++ b/usr.sbin/i4b/isdntrace/Makefile @@ -3,7 +3,6 @@ PROG = isdntrace SRCS = q921.c q931.c q931_util.c q932_fac.c 1tr6.c trace.c \ pcause_1tr6.c pcause_q850.c unknownl3.c MAN = isdntrace.8 -#CFLAGS += -Wall -g .include <bsd.prog.mk> |