mirror of
https://github.com/netsurf-browser/netsurf
synced 2025-02-17 06:54:42 +03:00
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:
parent
f78ed94926
commit
433f90563b
18
Makefile
18
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user