diff options
author | archie <archie@FreeBSD.org> | 1999-10-28 20:17:13 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 1999-10-28 20:17:13 +0000 |
commit | 625e9e0395524b220b6d7d5d2be0f66e20f63c1c (patch) | |
tree | 3301246b6cceec75bd3daab99335f63fd9315df1 /usr.sbin | |
parent | 76ae852f22241eb9356bed9eb799596be46b6462 (diff) | |
download | FreeBSD-src-625e9e0395524b220b6d7d5d2be0f66e20f63c1c.zip FreeBSD-src-625e9e0395524b220b6d7d5d2be0f66e20f63c1c.tar.gz |
Limit COPTS added by Makefile to just '-Wall'.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ngctl/Makefile | 6 | ||||
-rw-r--r-- | usr.sbin/nghook/Makefile | 2 |
2 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/ngctl/Makefile b/usr.sbin/ngctl/Makefile index 26f73d7..9f51407 100644 --- a/usr.sbin/ngctl/Makefile +++ b/usr.sbin/ngctl/Makefile @@ -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> diff --git a/usr.sbin/nghook/Makefile b/usr.sbin/nghook/Makefile index 1130ec9..18b07d2 100644 --- a/usr.sbin/nghook/Makefile +++ b/usr.sbin/nghook/Makefile @@ -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> |