summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2009-08-11 19:25:25 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2009-08-11 19:25:25 +0200
commitaa425c42389921dc4a71561c701014bf443f8094 (patch)
tree5bdf66f6aae4bc21e60ea87734b24933c63cd247 /Makefile
parent4773c64567c30f798de38174fa55931be7df25b4 (diff)
Added regex sets.
Minor fixes and comments. Added pcre-config to Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index df491b2..18950d1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,11 @@
CC = gcc
LD = gcc
-CFLAGS += -std=c99 $(shell pkg-config --cflags libconfig)
+CFLAGS += -std=c99
+CFLAGS += $(shell pkg-config --cflags libconfig)
+CFLAGS += $(shell pcre-config --cflags)
LDFLAGS += $(shell pkg-config --libs libconfig)
-OBJECTS = main.o config.o
+LDFLAGS += $(shell pcre-config --libs)
+OBJECTS = main.o config.o regexset.o
TARGET = ircstats
all: $(TARGET)