diff options
author | June McEnroe <june@causal.agency> | 2021-09-20 16:32:59 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-20 16:32:59 -0400 |
commit | f965cea7b39710d8e0209310bf07d6cbfa8fe002 (patch) | |
tree | 1f2655614f42c5815650b745c53562d2a1cb3ec8 /Makefile | |
parent | Update play@ascii.town description (diff) | |
download | torus-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-- | Makefile | 2 |
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 |