diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2009-08-11 19:25:25 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2009-08-11 19:25:25 +0200 |
commit | aa425c42389921dc4a71561c701014bf443f8094 (patch) | |
tree | 5bdf66f6aae4bc21e60ea87734b24933c63cd247 /Makefile | |
parent | 4773c64567c30f798de38174fa55931be7df25b4 (diff) |
Added regex sets.
Minor fixes and comments.
Added pcre-config to Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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) |