From 0202c140bbe1c4deb6f1b2a1921d12734e3e5a76 Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Fri, 23 Sep 1994 08:28:25 +0000 Subject: [PATCH] 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:. --- release/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 release/Makefile diff --git a/release/Makefile b/release/Makefile new file mode 100644 index 000000000000..fdf5f3b3576c --- /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