Limit COPTS added by Makefile to just '-Wall'.

This commit is contained in:
Archie Cobbs 1999-10-28 20:17:13 +00:00
parent 22307be5c9
commit fa2518ab1f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52607
2 changed files with 3 additions and 5 deletions

View File

@ -5,10 +5,8 @@ PROG= ngctl
SRCS= main.c mkpeer.c connect.c name.c show.c list.c \
debug.c shutdown.c rmhook.c status.c types.c
MAN8= ngctl.8
DPADD+= ${LIBNETGRAPH}
LDADD+= -lnetgraph
DPADD+= /usr/lib/libnetgraph.a
COPTS+= -O2 -g -Wall -Werror
COPTS+= -Wall
.include <bsd.prog.mk>

View File

@ -6,6 +6,6 @@ SRCS= main.c
MAN8= nghook.8
DPADD= ${LIBNETGRAPH}
LDADD= -lnetgraph
COPTS+= -g -Wall -O2 -Werror
COPTS+= -Wall
.include <bsd.prog.mk>