summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1994-09-23 08:28:25 +0000
committerrgrimes <rgrimes@FreeBSD.org>1994-09-23 08:28:25 +0000
commit52e444285421c38384d2364f6ff3925cea77ed5d (patch)
treede5ce491785731403b93bd6ca5c70862ccf43ff8
parent78f882a3c62bd78ea9a224ce965a161f0e6d34c3 (diff)
downloadFreeBSD-src-52e444285421c38384d2364f6ff3925cea77ed5d.zip
FreeBSD-src-52e444285421c38384d2364f6ff3925cea77ed5d.tar.gz
This is the very small start of moving all the make release related stuff
from etc/Makefile to release/Makefile. Right now this has one target (hieriarchy:) that replaces distrib-dirs:.
-rw-r--r--release/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/release/Makefile b/release/Makefile
new file mode 100644
index 0000000..fdf5f3b
--- /dev/null
+++ b/release/Makefile
@@ -0,0 +1,20 @@
+# $Id$
+#
+
+MTREE_DIR= ${.CURDIR}/../etc/mtree
+
+hieriarchy:
+ # If this exits with an error code of 2 your file hieriarchy was
+ # modified for some reason, please read the mtree output to understand
+ # what was changed, then run the command again.
+ #
+ # XXX This will currently error out if you have a procfs mounted,
+ # unmount it to get past this problem until procfs is fixed.
+ #
+ mtree -deu -f ${MTREE_DIR}/BSD.root.dist -p ${DESTDIR}/
+ mtree -deu -f ${MTREE_DIR}/BSD.var.dist -p ${DESTDIR}/var
+ mtree -deu -f ${MTREE_DIR}/BSD.usr.dist -p ${DESTDIR}/usr
+.if defined(MAKE_LOCAL)
+ mtree -deu -f ${MTREE_DIR}/BSD.local.dist -p ${DESTDIR}/usr/local
+.endif
+ cd ${DESTDIR}/ && rm -f ${DESTDIR}/sys && ln -s usr/src/sys sys
OpenPOWER on IntegriCloud