about summary refs log tree commit diff homepage
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-25 01:18:59 -0400
committerJune McEnroe <june@causal.agency>2018-08-25 01:18:59 -0400
commitede0aa9a91490f1926572b7d43ec38cdcbe8e354 (patch)
tree4079deff7832bfdf9ffc7fa21ddea420d44c9dfa
parentExplicitly build from .o objects (diff)
downloadtorus-ede0aa9a91490f1926572b7d43ec38cdcbe8e354.tar.gz
torus-ede0aa9a91490f1926572b7d43ec38cdcbe8e354.zip
Remove -lm
Map rendering uses only integer arithmetic this time.
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 50535fb..f95420c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CHROOT_USER = torus
 CHROOT_GROUP = $(CHROOT_USER)
 
 CFLAGS += -Wall -Wextra -Wpedantic
-LDLIBS = -lm -lcursesw
+LDLIBS = -lcursesw
 BINS = server client meta merge
 OBJS = $(BINS:%=%.o)
 
@@ -44,7 +44,6 @@ chroot.tar: server client
 	cp -p -f /libexec/ld-elf.so.1 root/libexec
 	cp -p -f \
 	    /lib/libc.so.7 \
-		/lib/libm.so.5 \
 	    /lib/libedit.so.7 \
 	    /lib/libncurses.so.8 \
 	    /lib/libncursesw.so.8 \