diff options
author | June McEnroe <june@causal.agency> | 2018-10-20 16:04:29 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-10-20 16:11:04 -0400 |
commit | 20c0ffabdeb400e882d07e25c2f2f05b32523e07 (patch) | |
tree | 48e9051099591384d2437f09ebe3135122c783b3 /Makefile | |
parent | Only use pidfile(3) on FreeBSD (diff) | |
download | torus-20c0ffabdeb400e882d07e25c2f2f05b32523e07.tar.gz torus-20c0ffabdeb400e882d07e25c2f2f05b32523e07.zip |
Add rc.torus
Diffstat (limited to 'Makefile')
-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 |