summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2009-08-14 15:31:16 +0200
committerJon Bergli Heier <snakebite@jvnv.net>2009-08-14 15:31:16 +0200
commit11ff809614169d26efaf9c0d0a30185cf971730c (patch)
treea338e8d1b5b89e116dd3fa43f8579eda62b731cb /Makefile
parent21105a00d87da96baae165a7596d0c12aaff09ce (diff)
Added a user struct which is stored in a hash table.
User nicks are hashed using the sdbm hash function.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 92d2043..680b520 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ 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 channel.o
+OBJECTS = main.o config.o regexset.o channel.o user.o
TARGET = ircstats
all: $(TARGET)