2001-05-19 23:18:21 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# This file contains common settings used for building FreeBSD
|
|
|
|
# sources.
|
|
|
|
|
|
|
|
# Enable various levels of compiler warning checks. These may be
|
|
|
|
# overridden (e.g. if using a non-gcc compiler) by defining NO_WARNS.
|
|
|
|
|
|
|
|
.if !defined(NO_WARNS)
|
|
|
|
. if defined(WARNS)
|
|
|
|
. if ${WARNS} > 0
|
2001-05-19 23:32:19 +00:00
|
|
|
. if !defined(NO_WERROR)
|
|
|
|
CFLAGS += -Werror
|
|
|
|
. endif
|
2001-05-19 23:18:21 +00:00
|
|
|
. endif
|
|
|
|
. if ${WARNS} > 1
|
2001-12-15 06:02:15 +00:00
|
|
|
CFLAGS += -Wall
|
|
|
|
. endif
|
|
|
|
. if ${WARNS} > 2
|
|
|
|
CFLAGS += -W -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith
|
|
|
|
. endif
|
|
|
|
. if ${WARNS} > 3
|
|
|
|
CFLAGS += -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align
|
2001-05-19 23:18:21 +00:00
|
|
|
. endif
|
2002-04-10 02:45:22 +00:00
|
|
|
. if ${WARNS} > 4
|
|
|
|
CFLAGS += -Wuninitialized
|
|
|
|
. endif
|
|
|
|
# BDECFLAGS
|
|
|
|
. if ${WARNS} > 5
|
|
|
|
CFLAGS += -ansi -pedantic -Wbad-function-cast -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls
|
|
|
|
. endif
|
|
|
|
. if ${WARNS} > 1 && ${WARNS} < 5
|
2002-01-05 20:17:50 +00:00
|
|
|
# XXX Delete -Wuninitialized by default for now -- the compiler doesn't
|
|
|
|
# XXX always get it right.
|
|
|
|
CFLAGS += -Wno-uninitialized
|
|
|
|
. endif
|
2001-05-19 23:18:21 +00:00
|
|
|
. endif
|
|
|
|
|
|
|
|
. if defined(FORMAT_AUDIT)
|
|
|
|
WFORMAT = 1
|
|
|
|
. endif
|
|
|
|
. if defined(WFORMAT)
|
|
|
|
. if ${WFORMAT} > 0
|
|
|
|
CFLAGS += -Wnon-const-format -Wno-format-extra-args
|
2001-05-19 23:32:19 +00:00
|
|
|
. if !defined(NO_WERROR)
|
2001-05-19 23:18:21 +00:00
|
|
|
CFLAGS += -Werror
|
2001-05-19 23:32:19 +00:00
|
|
|
. endif
|
|
|
|
. endif
|
2001-05-19 23:18:21 +00:00
|
|
|
. endif
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# Allow user-specified additional warning flags
|
|
|
|
CFLAGS += ${CWARNFLAGS}
|
2002-04-07 17:03:06 +00:00
|
|
|
|
|
|
|
# FreeBSD prior to 4.5 didn't have the __FBSDID() macro in <sys/cdefs.h>.
|
|
|
|
.if defined(BOOTSTRAPPING)
|
|
|
|
CFLAGS+= -D__FBSDID=__RCSID
|
|
|
|
.endif
|