diff options
author | June McEnroe <june@causal.agency> | 2018-08-21 22:46:18 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-08-21 22:46:18 -0400 |
commit | 7c5e77d57127d9b84ce92e1ff39ea6c5dd6ec2d6 (patch) | |
tree | 8476da8130727b5593dee893b99ccdc2c12a6caa /Makefile | |
parent | Use alignas rather than attributes (diff) | |
download | torus-7c5e77d57127d9b84ce92e1ff39ea6c5dd6ec2d6.tar.gz torus-7c5e77d57127d9b84ce92e1ff39ea6c5dd6ec2d6.zip |
Replace client with rudimentary CP437 support
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
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 |