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