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
commit0c8fb2b9fe779bdb7ba85c8458d4efc0034fb77b (patch)
tree1e7409bc2d986627d507cb697f9cc6cc8d36ad49 /Makefile
parentUse alignas rather than attributes (diff)
downloadtorus-0c8fb2b9fe779bdb7ba85c8458d4efc0034fb77b.tar.gz
torus-0c8fb2b9fe779bdb7ba85c8458d4efc0034fb77b.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