diff options
author | June McEnroe <june@causal.agency> | 2018-05-11 16:19:46 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-05-11 16:19:46 -0400 |
commit | d75a7cf5a2e683a69a9593d7e04741534b59409e (patch) | |
tree | a712b461cca619055893271c69c24ae34f03fa54 | |
parent | Add Utopioid (diff) | |
download | src-d75a7cf5a2e683a69a9593d7e04741534b59409e.tar.gz src-d75a7cf5a2e683a69a9593d7e04741534b59409e.zip |
Link with -lm
Come on, FreeBSD.
Diffstat (limited to '')
-rw-r--r-- | bin/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/Makefile b/bin/Makefile index b6d13697..685ea6f0 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -5,7 +5,7 @@ ALL_BINS = $(ANY_BINS) $(BSD_BINS) $(LIN_BINS) GFX ?= none CFLAGS += -Wall -Wextra -Wpedantic -LDLIBS = -ledit -lncurses -lutil -lz +LDLIBS = -ledit -lm -lncurses -lutil -lz LDLIBS_cocoa = -framework Cocoa LDLIBS_x11 = -lX11 |