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