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 | 6369fae3d92de8b77ede1007da0881f14684e293 (patch) | |
tree | 31459dad60125681b50f4a733df508221aed4f1e /Makefile | |
parent | Add map to client (diff) | |
download | torus-6369fae3d92de8b77ede1007da0881f14684e293.tar.gz torus-6369fae3d92de8b77ede1007da0881f14684e293.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) |