From 131f5592347929c3d28a4a9406e242e2cfdd5db9 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Wed, 19 Aug 2009 17:55:03 +0200 Subject: Write data to an XML file. File path for the XML file is read per channel from the 'xmlpath' option. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f3e182f..34f989a 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,11 @@ CFLAGS += -std=c99 -g CFLAGS += -D_GNU_SOURCE CFLAGS += $(shell pkg-config --cflags libconfig) CFLAGS += $(shell pcre-config --cflags) +CFLAGS += $(shell xml2-config --cflags) LDFLAGS += $(shell pkg-config --libs libconfig) LDFLAGS += $(shell pcre-config --libs) -OBJECTS = main.o config.o regexset.o channel.o user.o word.o sdbm.o +LDFLAGS += $(shell xml2-config --libs) +OBJECTS = main.o config.o regexset.o channel.o user.o word.o sdbm.o export_xml.o TARGET = ircstats all: $(TARGET) -- cgit v1.2.3