about summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5953be1..59070a7 100644
--- a/Makefile
+++ b/Makefile
@@ -2,14 +2,17 @@ NAME ?= ircd
 
 CFLAGS += -Wall -Wextra
 
+OBJS += channel.o
 OBJS += handle.o
 OBJS += loop.o
 OBJS += main.o
 OBJS += message.o
 OBJS += peer.o
+OBJS += reply.o
 OBJS += user.o
 OBJS += writef.o
 
+all: ${NAME}
 ${NAME}: ${OBJS}
 	${CC} -o ${NAME} ${CFLAGS} ${LDFLAGS} ${OBJS}
 clean: