diff options
author | Ren Kararou <[email protected]> | 2024-12-30 15:30:46 -0600 |
---|---|---|
committer | Ren Kararou <[email protected]> | 2024-12-30 15:30:46 -0600 |
commit | 810de0a90148d5dc7fe5919949220a00d14f6447 (patch) | |
tree | 61464902efd5718456561983825137a19dc80aa4 /makefile | |
parent | d9111c41e8160c69a79e03e88b9219cb1c0ac27e (diff) | |
download | nbtpd-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-- | makefile | 5 |
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 |