Makefile revision 247894
1# $FreeBSD: projects/bmake/pkgs/pseudo/stage/Makefile 247894 2013-03-06 18:35:57Z sjg $
2
3# this makefile gets hooked into everyone's dependencies so that
4# distrib-dirs can be done in STAGE_OBJTOP
5all:
6
7# mtree makes a lot of noise if we are not root, 
8# we don't need to see it.
9stage-distrib-dirs: .META
10	mkdir -p ${STAGE_OBJTOP}
11	${.MAKE} -C ${SRCTOP}/etc distrib-dirs DESTDIR=${STAGE_OBJTOP} > $@
12
13.include <bsd.prog.mk>
14
15.if ${.MAKE.LEVEL} > 0 && ${MK_STAGING} == "yes"
16all: stage-distrib-dirs
17.endif
18