about summary refs log tree commit diff homepage
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2021-09-20 16:32:59 -0400
committerJune McEnroe <june@causal.agency>2021-09-20 16:32:59 -0400
commitf965cea7b39710d8e0209310bf07d6cbfa8fe002 (patch)
tree1f2655614f42c5815650b745c53562d2a1cb3ec8 /Makefile
parentUpdate play@ascii.town description (diff)
downloadtorus-f965cea7b39710d8e0209310bf07d6cbfa8fe002.tar.gz
torus-f965cea7b39710d8e0209310bf07d6cbfa8fe002.zip
Replace kqueue with poll, remove libutil dependency
This makes the server much more portable.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fbc2757..9a8ae76 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ CHROOT_GROUP = ${CHROOT_USER}
 
 CFLAGS += -std=c11 -Wall -Wextra -Wpedantic
 LDFLAGS = -static
-LDLIBS = -lcursesw -lutil -lz
+LDLIBS = -lcursesw -lz
 
 -include config.mk