X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=Makefile;h=4bbcb12bf8a3555ab659dbb0333772111557db46;hb=e394a3b924dfe18b03a81e9c028082c286be697c;hp=2f74aa11fdffb6f9a0807286c3ad0eec94896e84;hpb=f6324470193a321f618516d9d783720ab548f1c0;p=libsvgtiny.git diff --git a/Makefile b/Makefile index 2f74aa1..4bbcb12 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,12 @@ include build/makefiles/Makefile.tools TESTRUNNER := $(ECHO) # Toolchain flags -WARNFLAGS := -Wall -Wundef -Wpointer-arith -Wcast-align \ +WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \ -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \ - -Wmissing-declarations -Wnested-externs -Werror -pedantic -ifneq ($(GCCVER),2) - WARNFLAGS := $(WARNFLAGS) -Wextra + -Wmissing-declarations -Wnested-externs -pedantic +# BeOS/Haiku standard library headers create warnings +ifneq ($(TARGET),beos) + WARNFLAGS := $(WARNFLAGS) -Werror endif CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)