diff options
author | bde <bde@FreeBSD.org> | 1998-12-07 12:44:12 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-12-07 12:44:12 +0000 |
commit | 38bdbdd81a8c15c074ffdb1e42178f3838eea977 (patch) | |
tree | 1d0d56747876adcdb13d4dbc5d022a43a8820d01 | |
parent | 670450a851c4f4db9d434ff555fb258a3841f59f (diff) | |
download | FreeBSD-src-38bdbdd81a8c15c074ffdb1e42178f3838eea977.zip FreeBSD-src-38bdbdd81a8c15c074ffdb1e42178f3838eea977.tar.gz |
CFLAGS+= -Wall -Wformat for all of src/bin. All warnings except 2 minor
ones in rmail have been fixed.
-rw-r--r-- | bin/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/Makefile.inc b/bin/Makefile.inc index 4fdaae4..0c085ca 100644 --- a/bin/Makefile.inc +++ b/bin/Makefile.inc @@ -1,7 +1,8 @@ # @(#)Makefile.inc 8.1 (Berkeley) 5/31/93 -# $Id$ +# $Id: Makefile.inc,v 1.9 1997/02/22 14:01:23 peter Exp $ BINDIR?= /bin +CFLAGS+= -Wall -Wformat NOSHARED?= YES .if exists (${.CURDIR}/../../secure) |