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