summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2009-08-19 17:55:03 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2009-08-19 17:55:03 +0200
commit131f5592347929c3d28a4a9406e242e2cfdd5db9 (patch)
treea7434fb93b1856665c34380a77f655a54bae0332 /Makefile
parent44f3e1486fb5fd45644683af83aaaf27047e4250 (diff)
Write data to an XML file.
File path for the XML file is read per channel from the 'xmlpath' option.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
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)