about summary refs log tree commit diff stats
path: root/makefile
diff options
context:
space:
mode:
authorRen Kararou <[email protected]>2024-12-30 15:30:46 -0600
committerRen Kararou <[email protected]>2024-12-30 15:30:46 -0600
commit810de0a90148d5dc7fe5919949220a00d14f6447 (patch)
tree61464902efd5718456561983825137a19dc80aa4 /makefile
parentd9111c41e8160c69a79e03e88b9219cb1c0ac27e (diff)
downloadnbtpd-810de0a90148d5dc7fe5919949220a00d14f6447.tar.gz
nbtpd-810de0a90148d5dc7fe5919949220a00d14f6447.tar.bz2
nbtpd-810de0a90148d5dc7fe5919949220a00d14f6447.zip
fix silly errors in last commit; start impl of handlers
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