diff options
author | dd <dd@FreeBSD.org> | 2001-06-30 05:39:36 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-30 05:39:36 +0000 |
commit | fdda055e004374dd1e05e940799016013c301b6c (patch) | |
tree | 08b867efe38b3b47dbeea4f979e8d098dc994ee4 /usr.sbin | |
parent | 9b64cdc70fa0f9f7b0e46cbef338b6b1b157c739 (diff) | |
download | FreeBSD-src-fdda055e004374dd1e05e940799016013c301b6c.zip FreeBSD-src-fdda055e004374dd1e05e940799016013c301b6c.tar.gz |
Set WARNS=2 on programs that compile cleanly with it; add $FreeBSD$
where necessary.
Submitted by: Mike Barcroft <mike@q9media.com>
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/accton/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/dev_mkdb/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/jail/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/lastlogin/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/procctl/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/rip6query/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/usbdevs/Makefile | 1 |
7 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/accton/Makefile b/usr.sbin/accton/Makefile index ea9b4f4..2a24e0b 100644 --- a/usr.sbin/accton/Makefile +++ b/usr.sbin/accton/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PROG= accton +WARNS?= 2 MAN= accton.8 .include <bsd.prog.mk> diff --git a/usr.sbin/dev_mkdb/Makefile b/usr.sbin/dev_mkdb/Makefile index d0b9c29..02d2b9d 100644 --- a/usr.sbin/dev_mkdb/Makefile +++ b/usr.sbin/dev_mkdb/Makefile @@ -2,6 +2,7 @@ # $FreeBSD$ PROG= dev_mkdb +WARNS?= 2 MAN= dev_mkdb.8 .include <bsd.prog.mk> diff --git a/usr.sbin/jail/Makefile b/usr.sbin/jail/Makefile index 36dcc5b..5b1df47 100644 --- a/usr.sbin/jail/Makefile +++ b/usr.sbin/jail/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PROG= jail +WARNS?= 2 MAN= jail.8 .include <bsd.prog.mk> diff --git a/usr.sbin/lastlogin/Makefile b/usr.sbin/lastlogin/Makefile index e8ed16e..022cfe0 100644 --- a/usr.sbin/lastlogin/Makefile +++ b/usr.sbin/lastlogin/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PROG= lastlogin +WARNS?= 2 MAN= lastlogin.8 -CFLAGS+=-Wall .include <bsd.prog.mk> diff --git a/usr.sbin/procctl/Makefile b/usr.sbin/procctl/Makefile index 880b93a..66193a6 100644 --- a/usr.sbin/procctl/Makefile +++ b/usr.sbin/procctl/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PROG= procctl +WARNS?= 2 MAN= procctl.8 .include <bsd.prog.mk> diff --git a/usr.sbin/rip6query/Makefile b/usr.sbin/rip6query/Makefile index 7abda92..10cb460 100644 --- a/usr.sbin/rip6query/Makefile +++ b/usr.sbin/rip6query/Makefile @@ -3,6 +3,7 @@ # $FreeBSD$ PROG= rip6query +WARNS?= 2 MAN= rip6query.8 CFLAGS+=-DINET6 -I${.CURDIR}/../route6d diff --git a/usr.sbin/usbdevs/Makefile b/usr.sbin/usbdevs/Makefile index 3cfc8ef..2442e40 100644 --- a/usr.sbin/usbdevs/Makefile +++ b/usr.sbin/usbdevs/Makefile @@ -2,6 +2,7 @@ # FreeBSD $FreeBSD$ PROG= usbdevs +WARNS?= 2 MAN= usbdevs.8 .include <bsd.prog.mk> |