]> gitweb.michael.orlitzky.com - libsvgtiny.git/blobdiff - Makefile
Fix svgtiny_display script to work with new makefiles.
[libsvgtiny.git] / Makefile
index 04fe3fc362eb81bfc413a3a389b22ebdf49fc379..4bbcb12bf8a3555ab659dbb0333772111557db46 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,12 +7,15 @@ 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 standard library headers create warnings
+ifneq ($(TARGET),beos)
+  WARNFLAGS := $(WARNFLAGS) -Werror
 endif
 CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \
        -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)