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 | 333c1574a2722ef5fca8215bf2db9f1dd6885e18 (patch) | |
tree | a9f3a1862a294a4f5cd2a8ae041b9f8418415b9b | |
parent | Fix NaNs in serverMap (diff) | |
download | torus-333c1574a2722ef5fca8215bf2db9f1dd6885e18.tar.gz torus-333c1574a2722ef5fca8215bf2db9f1dd6885e18.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) |