From 333c1574a2722ef5fca8215bf2db9f1dd6885e18 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 24 Jul 2018 16:52:55 -0400 Subject: Link with -lcurses NetBSD has its own curses implementation and doesn't ship ncurses. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit 1.4.1