diff options
author | June McEnroe <june@causal.agency> | 2018-07-24 16:52:55 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-07-24 16:52:55 -0400 |
commit | 8fb36ef147761a6532bf9af7d1362566b58b933a (patch) | |
tree | d72fd5fd8904485a505fd28b270f5dae420af8b2 | |
parent | Fix NaNs in serverMap (diff) | |
download | torus-8fb36ef147761a6532bf9af7d1362566b58b933a.tar.gz torus-8fb36ef147761a6532bf9af7d1362566b58b933a.zip |
Link with -lcurses
NetBSD has its own curses implementation and doesn't ship ncurses.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index f4de74e..daef391 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ USER = torus BINS = server client help meta merge CFLAGS += -Wall -Wextra -Wpedantic -LDLIBS = -lm -lncurses +LDLIBS = -lm -lcurses all: tags $(BINS) |