about summary refs log tree commit diff homepage
path: root/Makefile
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-01-06 15:23:09 -0500
committerJune McEnroe <june@causal.agency>2019-01-06 15:23:09 -0500
commit64db08da9781078f096067b9db5006709215d580 (patch)
treeb4dfa347f11d5b025a4f8930322fde7e63b82e0f /Makefile
parentAdd kcgi support to image (diff)
downloadtorus-64db08da9781078f096067b9db5006709215d580.tar.gz
torus-64db08da9781078f096067b9db5006709215d580.zip
Add image and font to chroot
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 684a04d..8059b83 100644
--- a/Makefile
+++ b/Makefile
@@ -24,19 +24,21 @@ image.o: png.h
 tags: *.h *.c
 	ctags -w *.h *.c
 
-chroot.tar: client server
+chroot.tar: client image server
 	install -d -o root -g wheel \
 		root \
 		root/bin \
 		root/home \
 		root/usr/share/misc \
+		root/usr/share/torus \
 		root/var/run
 	install -d -o $(CHROOT_USER) -g $(CHROOT_GROUP) root/home/$(CHROOT_USER)
 	install -d -o $(CHROOT_USER) -g $(CHROOT_GROUP) root/var/run/torus
 	cp -af /usr/share/locale root/usr/share
 	cp -fp /usr/share/misc/termcap.db root/usr/share/misc
 	cp -fp /rescue/sh root/bin
-	install client server root/bin
+	install client image server root/bin
+	install -m 644 default8x16.psfu root/usr/share/torus
 	tar -cf chroot.tar -C root bin home usr var
 
 install: chroot.tar rc.torus