Complete XML structure.
[pspp] / Makefile
index 5a0f07c4d1bfa4e4f0f36c8ca72f6ced2b15d501..284a8e72fa31a77e92c97b7c53b59328d1ea63ee 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,11 @@
-CFLAGS = -std=gnu99 -Wall -Werror -g -D_GNU_SOURCE=1
+CFLAGS := -std=gnu99 -Wall -Werror -g -D_GNU_SOURCE=1
+base_cflags := $(CFLAGS)
+base_ldflags := $(LDFLAGS)
+parse-xml.o: CFLAGS := $(shell pkg-config --cflags libxml-2.0) $(base_cflags)
+parse-xml: LDFLAGS := $(shell pkg-config --libs libxml-2.0) $(LDFLAGS)
+dump2.o: CFLAGS := $(base_cflags) -Wno-unused
+
+all: dump dump2 parse-xml
 dump: dump.o
+dump2: dump2.o
+parse-xml: parse-xml.o