diff options
author | rwatson <rwatson@FreeBSD.org> | 2002-12-01 23:10:28 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2002-12-01 23:10:28 +0000 |
commit | 4cdc7b3d85f340e3e01e0a10dbf40669bb8974cc (patch) | |
tree | bc77da09b04b22c206a0b13b7799289781458df6 /usr.sbin/getpmac | |
parent | fd64c667053d30c37409805102f3e1ab46a18cf9 (diff) | |
download | FreeBSD-src-4cdc7b3d85f340e3e01e0a10dbf40669bb8974cc.zip FreeBSD-src-4cdc7b3d85f340e3e01e0a10dbf40669bb8974cc.tar.gz |
In general, prefer WARNS to CFLAGS+=-Wall. Tend towards a more
BSD-esque Makefile style.
Submitted by: obrien
Approved by: re
Diffstat (limited to 'usr.sbin/getpmac')
-rw-r--r-- | usr.sbin/getpmac/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/getpmac/Makefile b/usr.sbin/getpmac/Makefile index 40f4f78..e84c1ec 100644 --- a/usr.sbin/getpmac/Makefile +++ b/usr.sbin/getpmac/Makefile @@ -1,7 +1,9 @@ # $FreeBSD$ PROG= getpmac +NOMAN= #true SRCS= getpmac.c -CFLAGS+=-Wall -NOMAN=yes + +WARNS?= 2 + .include <bsd.prog.mk> |