95888a7194
2. Remove comments about exit status of 2 from mtree, that won't happen any more. 3. Update mtree commands to use new -U option.
15 lines
440 B
Makefile
15 lines
440 B
Makefile
# $Id: Makefile,v 1.2 1994/09/23 09:01:20 rgrimes Exp $
|
|
#
|
|
|
|
MTREE_DIR= ${.CURDIR}/../etc/mtree
|
|
|
|
hierarchy:
|
|
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
|
|
rm -f ${DESTDIR}/sys
|
|
ln -s usr/src/sys ${DESTDIR}/sys
|