30a578e5dea3d7c9f5d150147d80bea9803acd3c
[dragonfly.git] / share / mk / bsd.sys.mk
1 # $FreeBSD: src/share/mk/bsd.sys.mk,v 1.3.2.5 2002/07/03 16:59:14 des Exp $
2 #
3 # This file contains common settings used for building DragonFly
4 # sources.
5
6 CSTD?=  gnu99
7
8 .if ${CSTD} == "k&r"
9 CFLAGS          += -traditional
10 .elif ${CSTD} == "c89" || ${CSTD} == "c90"
11 CFLAGS          += -std=iso9899:1990
12 .elif ${CSTD} == "c94" || ${CSTD} == "c95"
13 CFLAGS          += -std=iso9899:199409
14 .elif ${CSTD} == "c99"
15 CFLAGS          += -std=iso9899:1999
16 .else
17 CFLAGS          += -std=${CSTD}
18 .endif
19
20 # Enable various levels of compiler warning checks.  These may be
21 # overridden (e.g. if using a non-gcc compiler) by defining NO_WARNS.
22
23 .if !defined(NO_WARNS)
24 . if defined(WARNS)
25 .  if ${WARNS} >= 1
26 CWARNFLAGS      +=      -Wsystem-headers
27 .   if !defined(NO_WERROR) && ${CCVER} == "gcc44"
28 CWARNFLAGS      +=      -Werror
29 .   endif
30 .  endif
31 .  if ${WARNS} >= 2
32 CWARNFLAGS      +=      -Wall -Wno-pointer-sign
33 .  endif
34 .  if ${WARNS} >= 3
35 CWARNFLAGS      +=      -Wextra -Wno-unused-parameter -Wstrict-prototypes\
36                         -Wmissing-prototypes -Wpointer-arith\
37                         -Wold-style-definition
38 .  endif
39 .  if ${WARNS} >= 4
40 CWARNFLAGS      +=      -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch\
41                         -Wshadow -Wcast-align -Wunused-parameter
42 .  endif
43 .  if ${WARNS} >= 6
44 CWARNFLAGS      +=      -Wchar-subscripts -Winline -Wnested-externs\
45                         -Wredundant-decls
46 .  endif
47 .  if ${WARNS} >= 2 && ${WARNS} <= 4
48 # XXX Delete -Wuninitialized by default for now -- the compiler doesn't
49 # XXX always get it right.
50 CWARNFLAGS      +=      -Wno-uninitialized
51 .  endif
52 . endif
53
54 . if defined(FORMAT_AUDIT)
55 WFORMAT         =       1
56 . endif
57 . if defined(WFORMAT)
58 .  if ${WFORMAT} > 0
59 CWARNFLAGS      +=      -Wformat=2 -Wno-format-extra-args
60 .   if !defined(NO_WERROR) && (${CCVER} == "gcc47" || ${CCVER} == "gcc44")
61 CWARNFLAGS      +=      -Werror
62 .   endif
63 .  endif
64 . endif
65 .endif
66
67 # Allow user-specified additional warning flags
68 CFLAGS          +=      ${CWARNFLAGS}