X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=Makefile;h=4556eec939920be7c2e3ec898cee6421eb97ffdd;hb=035aa3397d290e4e475ede4c7faa1f40f52e454e;hp=4bbcb12bf8a3555ab659dbb0333772111557db46;hpb=e394a3b924dfe18b03a81e9c028082c286be697c;p=libsvgtiny.git diff --git a/Makefile b/Makefile index 4bbcb12..4556eec 100644 --- a/Makefile +++ b/Makefile @@ -13,10 +13,13 @@ 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/AmigaOS 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) ifneq ($(GCCVER),2) @@ -33,6 +36,9 @@ ifneq ($(PKGCONFIG),) LDFLAGS := $(LDFLAGS) \ $(shell $(PKGCONFIG) $(PKGCONFIGFLAGS) --libs libxml-2.0) else + ifeq ($(TARGET),beos) + CFLAGS := $(CFLAGS) -I/boot/home/config/include/libxml2 + endif CFLAGS := $(CFLAGS) -I$(PREFIX)/include/libxml2 LDFLAGS := $(CFLAGS) -lxml2 endif