X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=Makefile;h=94153e4c549e6d2a484431a61dae8319c6cb0167;hb=57231d84bc511051fd3f9dd89a502cfb0d212435;hp=4bbcb12bf8a3555ab659dbb0333772111557db46;hpb=e394a3b924dfe18b03a81e9c028082c286be697c;p=libsvgtiny.git diff --git a/Makefile b/Makefile index 4bbcb12..94153e4 100644 --- a/Makefile +++ b/Makefile @@ -13,9 +13,11 @@ TESTRUNNER := $(ECHO) WARNFLAGS := -Wall -W -Wundef -Wpointer-arith -Wcast-align \ -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes \ -Wmissing-declarations -Wnested-externs -pedantic -# BeOS/Haiku standard library headers create warnings +# BeOS/Haiku/AmigaOS4 standard library headers create warnings ifneq ($(TARGET),beos) - WARNFLAGS := $(WARNFLAGS) -Werror + ifneq ($(TARGET),AmigaOS) + WARNFLAGS := $(WARNFLAGS) -Werror + endif endif CFLAGS := -D_BSD_SOURCE -I$(CURDIR)/include/ \ -I$(CURDIR)/src $(WARNFLAGS) $(CFLAGS)