diff options
author | June McEnroe <june@causal.agency> | 2018-07-22 19:17:09 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-07-22 19:17:09 -0400 |
commit | 8d589acc06cf66fdd46ae43ca81dec237586b3ad (patch) | |
tree | 917c686ca64f3a5ad6e5e664d755f0132d437bf5 | |
parent | Add map to client (diff) | |
download | torus-8d589acc06cf66fdd46ae43ca81dec237586b3ad.tar.gz torus-8d589acc06cf66fdd46ae43ca81dec237586b3ad.zip |
Link with -lm
Darwin's lack of separation strikes again.
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
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) |