diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 3b3a08a..a4fedf8 100644 --- a/Makefile +++ b/Makefile @@ -33,13 +33,16 @@ chroot.tar: server client root/home \ root/usr \ root/usr/share \ - root/usr/share/misc + root/usr/share/misc \ + root/var \ + 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 -a -f /usr/share/locale root/usr/share cp -p -f /usr/share/misc/termcap.db root/usr/share/misc cp -p -f /rescue/sh root/bin install -o root -g wheel -m 555 server client root/bin - tar -c -f chroot.tar -C root bin home usr + tar -c -f chroot.tar -C root bin home usr var clean: rm -f tags $(OBJS) $(BINS) chroot.tar |