1# $FreeBSD$ 2 3.include <src.opts.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.lib32.dist} \ 13 ${_BSD.libsoft.dist} \ 14 ${_BSD.sendmail.dist} \ 15 ${_BSD.tests.dist} \ 16 BSD.usr.dist \ 17 BSD.var.dist 18 19.if ${MK_LIB32} != "no" 20_BSD.lib32.dist= BSD.lib32.dist 21.endif 22.if ${MK_LIBSOFT} != "no" 23_BSD.libsoft.dist= BSD.libsoft.dist 24.endif 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