Move where WARNFLAGS is set up so that we actually get warnings. Ahem, there's a lot of them.

svn path=/trunk/netsurf/; revision=5299
This commit is contained in:
Daniel Silverstone 2008-09-10 13:32:07 +00:00
parent f78ed94926
commit 433f90563b
1 changed files with 10 additions and 8 deletions

View File

@ -162,6 +162,16 @@ OBJROOT := build-$(HOST)-$(TARGET)$(SUBTARGET)
# General flag setup
# ----------------------------------------------------------------------------
# Set up the WARNFLAGS here so that they can be overridden in the Makefile.config
WARNFLAGS = -W -Wall -Wundef -Wpointer-arith \
-Wcast-align -Wwrite-strings -Wstrict-prototypes \
-Wmissing-prototypes -Wmissing-declarations -Wredundant-decls \
-Wnested-externs -Winline
ifneq ($(GCCVER),2)
WARNFLAGS += -Wno-unused-parameter
endif
# Pull in the configuration
include Makefile.config
# 1: Feature name (ie, NETSURF_USE_BMP -> BMP)
@ -457,14 +467,6 @@ $(DEPROOT)/created: $(OBJROOT)/created
$(Q)$(MKDIR) $(DEPROOT)
$(Q)$(TOUCH) $(DEPROOT)/created
WARNFLAGS = -W -Wall -Wundef -Wpointer-arith \
-Wcast-align -Wwrite-strings -Wstrict-prototypes \
-Wmissing-prototypes -Wmissing-declarations -Wredundant-decls \
-Wnested-externs -Winline
ifneq ($(GCCVER),2)
WARNFLAGS += -Wno-unused-parameter
endif
CLEANS := clean-target
include Makefile.sources