diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2009-08-13 02:23:33 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2009-08-13 02:23:33 +0200 |
commit | 93c935a639da55c1bc4d39e616588cc0f73df1e3 (patch) | |
tree | a016e5b0f12cd31931a23d859bce0605249e33b1 /Makefile | |
parent | 9b25065810fca6e0238c4c98ec3c09ba4d8abc35 (diff) |
Added channels.
Minor fixes - known bugs!
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,11 +1,12 @@ CC = gcc LD = gcc -CFLAGS += -std=c99 +CFLAGS += -std=c99 -g +CFLAGS += -D_GNU_SOURCE CFLAGS += $(shell pkg-config --cflags libconfig) CFLAGS += $(shell pcre-config --cflags) LDFLAGS += $(shell pkg-config --libs libconfig) LDFLAGS += $(shell pcre-config --libs) -OBJECTS = main.o config.o regexset.o +OBJECTS = main.o config.o regexset.o channel.o TARGET = ircstats all: $(TARGET) |