1.include <src.opts.mk>
2
3.include <bsd.compat.pre.mk>
4
5PACKAGE=	mtree
6
7# NOTE: BSD.debug.dist is unconditionally installed for developer ease-of-use.
8FILES=	\
9	BSD.debug.dist \
10	BSD.include.dist \
11	BSD.root.dist \
12	${_BSD.libcompats.dist} \
13	${_BSD.sendmail.dist} \
14	${_BSD.tests.dist} \
15	BSD.usr.dist \
16	BSD.var.dist
17
18.for LIBCOMPAT libcompat in ${_ALL_LIBCOMPATS_libcompats}
19.if ${MK_LIB${LIBCOMPAT}} != "no"
20_BSD.libcompats.dist+=	BSD.lib${libcompat}.dist
21.endif
22.endfor
23.if ${MK_SENDMAIL} != "no"
24_BSD.sendmail.dist=	BSD.sendmail.dist
25.endif
26.if ${MK_TESTS} != "no"
27_BSD.tests.dist=	BSD.tests.dist
28.endif
29
30NO_OBJ=
31FILESDIR= /etc/mtree
32
33.include <bsd.prog.mk>
34