summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2009-08-13 02:23:33 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2009-08-13 02:23:33 +0200
commit93c935a639da55c1bc4d39e616588cc0f73df1e3 (patch)
treea016e5b0f12cd31931a23d859bce0605249e33b1 /Makefile
parent9b25065810fca6e0238c4c98ec3c09ba4d8abc35 (diff)
Added channels.
Minor fixes - known bugs!
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 18950d1..92d2043 100644
--- a/Makefile
+++ b/Makefile
@@ -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)