Makefile revision 302408
1128080Semax# $FreeBSD: stable/11/targets/pseudo/stage/Makefile 296700 2016-03-11 23:45:28Z bdrewery $
2128080Semax
3162128Semax# this makefile gets hooked into everyone's dependencies so that
4162128Semax# distrib-dirs can be done in STAGE_OBJTOP
5162128Semaxall:
6162128Semax
7128080Semax# mtree makes a lot of noise if we are not root, 
8128080Semax# we don't need to see it.
9128080Semaxstage-distrib-dirs: .META ${META_DEPS}
10128080Semax	mkdir -p ${STAGE_OBJTOP}
11128080Semax	INSTALL="sh ${SRCTOP}/tools/install.sh" ${.MAKE} -C ${SRCTOP}/etc \
12128080Semax	    distrib-dirs -DNO_FSCHG -DWITH_TESTS DESTDIR=${STAGE_OBJTOP}
13128080Semax
14128080Semax.include <bsd.prog.mk>
15128080Semax
16128080Semax.if ${.MAKE.LEVEL} > 0 && ${MK_STAGING} == "yes"
17128080Semaxall: stage-distrib-dirs
18128080Semax.endif
19128080Semax