aboutsummaryrefslogtreecommitdiff
path: root/sys/conf/kern.mk
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1999-01-29 10:57:18 +0000
committerBruce Evans <bde@FreeBSD.org>1999-01-29 10:57:18 +0000
commit9a6c0bd6c9e0273d88ff515e5eb582961445acf3 (patch)
tree91b855e99aacf21122367a6d97068295c485d28c /sys/conf/kern.mk
parentfe5871fb09d4dfb7ff8261763277a0e780fec9a1 (diff)
downloadsrc-9a6c0bd6c9e0273d88ff515e5eb582961445acf3.tar.gz
src-9a6c0bd6c9e0273d88ff515e5eb582961445acf3.zip
Fixed comment and whitespace lossage in recent commits. The -W flag
is not implied by -Wall as claimed by gcc.1. Adding it causes a measly 7193 new warnings for LINT, mostly for "unused parameter" and "comparison between signed and unsigned".
Notes
Notes: svn path=/head/; revision=43390
Diffstat (limited to 'sys/conf/kern.mk')
-rw-r--r--sys/conf/kern.mk21
1 files changed, 14 insertions, 7 deletions
diff --git a/sys/conf/kern.mk b/sys/conf/kern.mk
index 4ae998a21bf6..16b4f74849c7 100644
--- a/sys/conf/kern.mk
+++ b/sys/conf/kern.mk
@@ -1,15 +1,22 @@
-# $Id: bsd.kern.mk,v 1.13 1999/01/27 22:53:58 dillon Exp $
+# $Id: bsd.kern.mk,v 1.14 1999/01/29 06:22:19 dillon Exp $
#
# Warning flags for compiling the kernel and components of the kernel.
#
-# Note that the newly added -Wcast-qual is responsible for generating
-# most of the remaining warnings. Warnings introduced with -Wall
-# will also pop up, but are easier to fix.
-
-CWARNFLAGS?= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
- -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
+# Note that the newly added -Wcast-qual is responsible for generating
+# most of the remaining warnings. Warnings introduced with -Wall will
+# also pop up, but are easier to fix.
+#
+CWARNFLAGS?= -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes \
+ -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual \
-fformat-extensions -ansi
+#
+# The following flags are next up for working on:
+# -W
+#
+# When working on removing warnings from code, the `-Werror' flag should be
+# of material assistance.
+#
#
# On the alpha, make sure that we don't use floating-point registers and