diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-01-10 12:48:06 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-01-10 12:49:30 -0800 |
commit | 71d20885019564586d5f4d316af220cdae2900f5 (patch) | |
tree | 0fb3024519040f20f4e46d87315a14ef571ee6c2 /MCONFIG | |
parent | a7fb4143d599529def315c444c83a8e1aac734d2 (diff) | |
download | syslinux.git-71d20885019564586d5f4d316af220cdae2900f5.tar.gz syslinux.git-71d20885019564586d5f4d316af220cdae2900f5.tar.xz syslinux.git-71d20885019564586d5f4d316af220cdae2900f5.zip |
Makefile: replace -W -Wall with centralized $(GCCWARN)
Replace -W -Wall hardcoded into a bunch of Makefiles with $(GCCWARN),
a centralized variable defined in the root MCONFIG. Add
-Wstrict-prototypes to the list of global warnings: we should never
have non-prototyped declarations.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'MCONFIG')
-rw-r--r-- | MCONFIG | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -60,6 +60,9 @@ WGET = wget com32 = $(topdir)/com32 +# Common warnings we want for all gcc-generated code +GCCWARN := -W -Wall -Wstrict-prototypes + # Common stanza to make gcc generate .*.d dependency files MAKEDEPS = -Wp,-MT,$@,-MD,$(dir $@).$(notdir $@).d |