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 | c16e3c46793b4fec5f76bf2a61b8877e5ba25e61 (patch) | |
tree | ee0fe041e3bc4dbc7bf6d4db67cbb48a5a265c31 /Makefile | |
parent | Update play@ascii.town description (diff) | |
download | torus-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-- | 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 |