From 93c935a639da55c1bc4d39e616588cc0f73df1e3 Mon Sep 17 00:00:00 2001 From: Jon Bergli Heier Date: Thu, 13 Aug 2009 02:23:33 +0200 Subject: Added channels. Minor fixes - known bugs! --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3