about summary refs log tree commit diff stats
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefile b/makefile
index eac6ed1..da7070b 100644
--- a/makefile
+++ b/makefile
@@ -4,7 +4,10 @@ LDFLAGS:=-flto=thin
 
 INCLUDES=-Iinc/
 
-OBJECTS=obj/main.o obj/packet.o obj/netascii.o
+OBJECTS=obj/main.o obj/packet.o obj/netascii.o obj/handlers.o
+
+.PHONY: all
+all: bin/nbtpd
 
 bin/nbtpd: $(OBJECTS)
 	@if [ ! -d "bin" ]; then mkdir -p bin; fi