nrelease: Minor style improvements to the Makefile
[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 # Support handling -W flags for both host cc and target cc.
7 .if defined(__USE_HOST_CCVER)
8 _WCCVER=        ${HOST_CCVER}
9 .else
10 _WCCVER=        ${CCVER}
11 .endif
12
13 CSTD?=  gnu99
14
15 .if ${CSTD} == "k&r"
16 CFLAGS          += -traditional
17 .elif ${CSTD} == "c89" || ${CSTD} == "c90"
18 CFLAGS          += -std=iso9899:1990
19 .elif ${CSTD} == "c94" || ${CSTD} == "c95"
20 CFLAGS          += -std=iso9899:199409
21 .elif ${CSTD} == "c99"
22 CFLAGS          += -std=iso9899:1999
23 .else
24 CFLAGS          += -std=${CSTD}
25 .endif
26
27 # Explicitly clear _cnowarnflags (should not be used in Makefiles).
28 _cnowarnflags=
29
30 # Enable various levels of compiler warning checks.  These may be
31 # overridden (e.g. if using a non-gcc compiler) by defining NO_WARNS.
32
33 .if !defined(NO_WARNS)
34 . if defined(WARNS)
35 .  if ${WARNS} >= 1
36 CWARNFLAGS      +=      -Wmissing-include-dirs -Wsystem-headers
37 .   if !defined(NO_WERROR) && (${_WCCVER} == "gcc47" || ${_WCCVER} == "gcc80")
38 CWARNFLAGS      +=      -Werror
39 .   endif
40 .  endif
41 .  if ${WARNS} >= 2
42 CWARNFLAGS      +=      -Wall -Wformat-security -Winit-self
43 .  endif
44 .  if ${WARNS} >= 3
45 CWARNFLAGS      +=      -Wextra -Wstrict-prototypes\
46                         -Wmissing-prototypes -Wpointer-arith\
47                         -Wold-style-definition
48 .  endif
49 .  if ${WARNS} >= 4
50 CWARNFLAGS      +=      -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch\
51                         -Wshadow -Wcast-align -Wunused-parameter
52 .  endif
53 .  if ${WARNS} >= 6
54 CWARNFLAGS      +=      -Wchar-subscripts -Winline -Wnested-externs\
55                         -Wredundant-decls
56 .  endif
57 .  if ${WARNS} >= 2 && ${WARNS} <= 6
58 # Delete -Wno-pointer-sign from -Wall by default (C only).
59 _cnowarnflags   +=      -Wno-pointer-sign
60 .  endif
61 .  if ${WARNS} >= 2 && ${WARNS} <= 4
62 # XXX Delete -Wmaybe-uninitialized by default for now -- the compiler doesn't
63 # XXX always get it right.
64 .   if ${_WCCVER:Mgcc*}
65 _cnowarnflags   +=      -Wno-maybe-uninitialized
66 .   else
67 _cnowarnflags   +=      -Wno-uninitialized
68 .   endif
69 .  endif
70 .  if ${WARNS} == 3
71 # Delete -Wno-unused-parameter from -Wextra by default only if WARNS < 4.
72 _cnowarnflags   +=      -Wno-unused-parameter
73 .  endif
74 # Delete -Wformat-* family that give little benefits, same for stringop.
75 .  if ${WARNS} >= 2 && ${WARNS} <= 6 && ${_WCCVER:Mgcc8*}
76 _cnowarnflags   +=      -Wno-format-overflow -Wno-format-truncation
77 _cnowarnflags   +=      -Wno-stringop-truncation
78 .  endif
79 .  if ${WARNS} >= 1 && ${WARNS} <= 6 && ${_WCCVER:Mgcc8*}
80 _cnowarnflags   +=      -Wno-stringop-overflow
81 .  endif
82 # Activate gcc47's -Wunused-but-set-variable (which is in -Wall) and
83 # -Wunused-but-set-parameter (which is in -Wextra) only at WARNS >= 4
84 # (which is the level when also -Wunused-parameter comes into play).
85 .  if ${WARNS} >= 2 && ${WARNS} <= 3 && ${_WCCVER:Mgcc*}
86 _cnowarnflags   +=      -Wno-unused-but-set-variable
87 .  endif
88 .  if ${WARNS} == 3 && ${_WCCVER:Mgcc*}
89 _cnowarnflags   +=      -Wno-unused-but-set-parameter
90 .  endif
91 .  if ${WARNS} == 3 && (${_WCCVER:Mgcc49} || ${_WCCVER:Mgcc[5-]*})
92 _cnowarnflags   +=      -Wno-unused-value
93 .  endif
94 .  if ${WARNS} == 3 && ${_WCCVER:Mgcc8*}
95 _cnowarnflags   +=      -Wno-implicit-fallthrough
96 .  endif
97 .  if ${WARNS} >= 2 && ${_WCCVER:Mgcc4[789]}
98 _cnowarnflags   +=      -Wno-error=maybe-uninitialized\
99                         -Wno-error=uninitialized\
100                         -Wno-error=shadow
101 .  endif
102 # Disable -Werror selectively for -Os and -Og compilations.  Both -Winline and
103 # -Wmaybe-uninitialized are noisy and should be caught by standard -O and -O2.
104 # These are still useful diagnostics while investigating compilation issues.
105 .  if defined(WORLD_CCOPTLEVEL) && (${WORLD_CCOPTLEVEL:Mg} || ${WORLD_CCOPTLEVEL:Ms})
106 .   if ${WARNS} >= 6
107 CWARNFLAGS      +=      -Wno-error=inline
108 .   endif
109 .   if ${WARNS} >= 5 && ${_WCCVER:Mgcc*}
110 CWARNFLAGS      +=      -Wno-error=maybe-uninitialized
111 .   endif
112 .  endif
113 . endif
114
115 . if defined(FORMAT_AUDIT)
116 WFORMAT         =       1
117 . endif
118 . if defined(WFORMAT)
119 .  if ${WFORMAT} > 0
120 CWARNFLAGS      +=      -Wformat=2
121 .   if !defined(NO_WERROR) && (${_WCCVER} == "gcc47" || ${_WCCVER} == "gcc80")
122 CWARNFLAGS      +=      -Werror
123 .   endif
124 .  endif
125 . endif
126 .endif
127
128 .if defined(NO_WCAST_FUNCTION_TYPE) && ${WARNS} >= 3 && ${_WCCVER:Mgcc8*}
129 _cnowarnflags   +=      -Wno-cast-function-type
130 .endif
131 .if defined(NO_WARRAY_BOUNDS)
132 _cnowarnflags   +=      -Wno-array-bounds
133 .endif
134 .if defined(NO_STRICT_OVERFLOW)
135 CFLAGS          +=      -fno-strict-overflow
136 .endif
137 .if defined(NO_STRICT_ALIASING)
138 CFLAGS          +=      -fno-strict-aliasing
139 .endif
140
141
142 # Add -Wno-foo flags last
143 .if !defined(WARNS_AUDIT)
144 CWARNFLAGS      +=      ${_cnowarnflags}
145 .endif
146
147 # Allow user-specified additional warning flags
148 CFLAGS          +=      ${CWARNFLAGS}
149
150 # Tell bmake not to mistake standard targets for things to be searched for
151 # or expect to ever be up-to-date
152 PHONY_NOTMAIN = afterdepend afterinstall all beforedepend beforeinstall \
153         beforelinking build build-tools buildfiles buildincludes \
154         checkdpadd clean cleandepend cleandir cleanobj configure \
155         depend dependall distclean distribute exe extract fetch \
156         html includes install installfiles installincludes lint \
157         obj objlink objs objwarn patch realall realdepend \
158         realinstall regress subdir-all subdir-depend subdir-install \
159         tags whereobj
160
161 # if given PROG matches anything in the PHONY list, exclude it.
162 .PHONY: ${PHONY_NOTMAIN:N${PROG:U}}
163 .NOTMAIN: ${PHONY_NOTMAIN}