summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 10 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 52afa24c1..9fa301eed 100644
--- a/Makefile
+++ b/Makefile
@@ -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