X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=Makefile;h=94153e4c549e6d2a484431a61dae8319c6cb0167;hb=57231d84bc511051fd3f9dd89a502cfb0d212435;hp=04fe3fc362eb81bfc413a3a389b22ebdf49fc379;hpb=6c3e47bc7ec95e8092190358bb52c434a559e063;p=libsvgtiny.git diff --git a/Makefile b/Makefile index 04fe3fc..94153e4 100644 --- a/Makefile +++ b/Makefile @@ -7,12 +7,17 @@ COMPONENT_TYPE ?= lib-static # Setup the tooling 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/AmigaOS4 standard library headers create warnings +ifneq ($(TARGET),beos) + ifneq ($(TARGET),AmigaOS) + WARNFLAGS := $(WARNFLAGS) -Werror + endif endif CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)