about summary refs log tree commit diff homepage
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-21 22:46:18 -0400
committerJune McEnroe <june@causal.agency>2018-08-21 22:46:18 -0400
commit7c5e77d57127d9b84ce92e1ff39ea6c5dd6ec2d6 (patch)
tree8476da8130727b5593dee893b99ccdc2c12a6caa /Makefile
parentUse alignas rather than attributes (diff)
downloadtorus-7c5e77d57127d9b84ce92e1ff39ea6c5dd6ec2d6.tar.gz
torus-7c5e77d57127d9b84ce92e1ff39ea6c5dd6ec2d6.zip
Replace client with rudimentary CP437 support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4091276..f2b2ca0 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CHROOT_USER = torus
 CHROOT_GROUP = $(CHROOT_USER)
 
 CFLAGS += -Wall -Wextra -Wpedantic
-LDLIBS = -lm -lcurses
+LDLIBS = -lm -lcursesw
 BINS = server client help meta merge
 OBJS = $(BINS:%=%.o)
 
@@ -32,6 +32,7 @@ chroot.tar: server client help
 	    /lib/libncurses.so.8 \
 	    /lib/libncursesw.so.8 \
 	    root/lib
+	cp -a -f /usr/share/locale root/usr/share
 	cp -p -f /usr/share/misc/termcap.db root/usr/share/misc
 	cp -p -f /bin/sh root/bin
 	install -o root -g wheel -m 555 server client help root/bin