summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-07-22 19:17:09 -0400
committerJune McEnroe <june@causal.agency>2018-07-22 19:17:09 -0400
commit8d589acc06cf66fdd46ae43ca81dec237586b3ad (patch)
tree917c686ca64f3a5ad6e5e664d755f0132d437bf5
parentAdd map to client (diff)
downloadtorus-8d589acc06cf66fdd46ae43ca81dec237586b3ad.tar.gz
torus-8d589acc06cf66fdd46ae43ca81dec237586b3ad.zip
Link with -lm
Darwin's lack of separation strikes again.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 49377bc..dc6bb79 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 USER = torus
 BINS = server client help meta merge
 CFLAGS += -Wall -Wextra -Wpedantic
-LDLIBS = -lncurses
+LDLIBS = -lm -lncurses
 
 all: tags $(BINS)