diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2004-12-08 18:07:08 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2004-12-08 18:07:08 +0000 |
commit | 1b9a342dfa31bab5bd6ff337177553b9d35d6efa (patch) | |
tree | 2232d7d228bc6eaa385b0b6a0e13dadad47b3a73 /usr.bin/cvs | |
parent | 8bf51d85b909c86c9fd82740b6008033d9358883 (diff) |
add more CFLAGS; ok jfb@.
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/cvs/Makefile | 4 | ||||
-rw-r--r-- | usr.bin/cvs/cvsd/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs/Makefile b/usr.bin/cvs/cvs/Makefile index c8289dbda13..253ffebb491 100644 --- a/usr.bin/cvs/cvs/Makefile +++ b/usr.bin/cvs/cvs/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.10 2004/11/26 16:23:50 jfb Exp $ +# $Id: Makefile,v 1.11 2004/12/08 18:07:07 xsa Exp $ .PATH: ${.CURDIR}/.. @@ -17,6 +17,8 @@ BINMODE=555 CFLAGS= -g -ggdb CFLAGS+= -Wall CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes +CFLAGS+= -Wmissing-declarations +CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare CFLAGS+= -DCVS diff --git a/usr.bin/cvs/cvsd/Makefile b/usr.bin/cvs/cvsd/Makefile index 191a55ae958..ea10c36b3df 100644 --- a/usr.bin/cvs/cvsd/Makefile +++ b/usr.bin/cvs/cvsd/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 2004/12/06 18:57:10 xsa Exp $ +# $Id: Makefile,v 1.7 2004/12/08 18:07:07 xsa Exp $ .PATH: ${.CURDIR}/.. @@ -10,6 +10,8 @@ MAN=cvsd.8 cvsd.conf.5 CFLAGS+= -Wall -I${.CURDIR}/.. CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes +CFLAGS+= -Wmissing-declarations +CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare CFLAGS+= -DCVSD |