diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2009-08-19 17:55:03 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2009-08-19 17:55:03 +0200 |
commit | 131f5592347929c3d28a4a9406e242e2cfdd5db9 (patch) | |
tree | a7434fb93b1856665c34380a77f655a54bae0332 /Makefile | |
parent | 44f3e1486fb5fd45644683af83aaaf27047e4250 (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-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |