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
commitc16e3c46793b4fec5f76bf2a61b8877e5ba25e61 (patch)
treeee0fe041e3bc4dbc7bf6d4db67cbb48a5a265c31 /Makefile
parentUpdate play@ascii.town description (diff)
downloadtorus-c16e3c46793b4fec5f76bf2a61b8877e5ba25e61.tar.gz
torus-c16e3c46793b4fec5f76bf2a61b8877e5ba25e61.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