Remove -g compiler flag.

This commit is contained in:
Marcel Moolenaar 2000-01-03 12:01:30 +00:00
parent ed4674a8a8
commit c292cf660e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=55336
7 changed files with 8 additions and 7 deletions

View File

@ -9,7 +9,7 @@ SHLIB_MAJOR= 1
SRCS= sock.c msg.c debug.c
CFLAGS+= -g -Wall
CFLAGS+= -Wall
beforeinstall:
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/netgraph.h \

View File

@ -5,7 +5,7 @@ PROG= vinum
SRCS= v.c list.c vinumparser.c vinumutil.c vext.h commands.c
MAN8= vinum.8
CFLAGS+= -I${.CURDIR}/../../sys -g -Wall -DVINUMDEBUG
CFLAGS+= -I${.CURDIR}/../../sys -Wall -DVINUMDEBUG
DPADD= ${LIBUTIL} ${LIBREADLINE} ${LIBTERMCAP}
LDADD= -lutil -lreadline -ltermcap -ldevstat

View File

@ -24,7 +24,6 @@ SRCS += ohci_pci.c ohci.c ohcireg.h ohcivar.h
SRCS += opt_bus.h pci_if.h
NOMAN =
CFLAGS += -g
opt_usb.h:
echo > opt_usb.h

View File

@ -12,7 +12,7 @@ SRC = dtmfdecode.c
# libm is only necessary if USE_COS is defined in the source
#LDADD += -lm
CFLAGS += -Wall -g -DDEBUG
CFLAGS += -Wall -DDEBUG
MAN1 = dtmfdecode.1
test: ${PROG}

View File

@ -8,7 +8,7 @@
PROG = g711conv
SRC = g711conv.c
CFLAGS += -Wall -g
CFLAGS += -Wall
MAN1 = g711conv.1
.include <bsd.prog.mk>

View File

@ -1,2 +1,4 @@
CFLAGS+= -Wall -g -static
# $FreeBSD$
CFLAGS+= -Wall -static
BINDIR?= /usr/sbin

View File

@ -4,7 +4,7 @@ PROG= tcpdump
CFLAGS+=-DHAVE_FCNTL_H=1 -DHAVE_NET_SLIP_H=1 -DTIME_WITH_SYS_TIME=1 \
-DHAVE_ETHER_NTOHOST=1 -DHAVE_SETLINEBUF=1 -DSTDC_HEADERS=1 \
-DRETSIGTYPE=void -DRETSIGVAL= -DHAVE_SOCKADDR_SA_LEN=1 \
-DHAVE_TM_GMTOFF=1 -DLBL_ALIGN=1 -DPPP -DHAVE_FDDI -g
-DHAVE_TM_GMTOFF=1 -DLBL_ALIGN=1 -DPPP -DHAVE_FDDI
MAN1= tcpdump.1
SRCS = version.c tcpdump.c \
print-arp.c print-atalk.c print-atm.c print-fr.c print-bootp.c \