1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00
freebsd/sys/conf/kern.mk
1999-01-27 22:53:58 +00:00

31 lines
963 B
Makefile

# $Id: bsd.kern.mk,v 1.12 1998/12/17 22:36:21 dfr Exp $
#
# Warning flags for compiling the kernel and components of the kernel.
#
#CWARNFLAGS?= -Wreturn-type -Wcomment -Wredundant-decls -Wimplicit \
# -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes \
# -Wpointer-arith -Winline -Wuninitialized -Wformat -Wunused \
# -fformat-extensions -ansi
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 ( note: -W may be included by -Wall )
#
# 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
# allow the use of EV56 instructions (only needed for low-level i/o).
#
.if ${MACHINE_ARCH} == "alpha"
CFLAGS+= -mno-fp-regs -Wa,-mev56
.endif