freebsd-dev/etc/mtree/Makefile
Warner Losh d0b2dbfa0e Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:55:03 -06:00

35 lines
663 B
Makefile

.include <src.opts.mk>
.include <bsd.compat.pre.mk>
PACKAGE= mtree
# NOTE: BSD.debug.dist is unconditionally installed for developer ease-of-use.
FILES= \
BSD.debug.dist \
BSD.include.dist \
BSD.root.dist \
${_BSD.libcompats.dist} \
${_BSD.sendmail.dist} \
${_BSD.tests.dist} \
BSD.usr.dist \
BSD.var.dist
.for LIBCOMPAT libcompat in ${_ALL_LIBCOMPATS_libcompats}
.if ${MK_LIB${LIBCOMPAT}} != "no"
_BSD.libcompats.dist+= BSD.lib${libcompat}.dist
.endif
.endfor
.if ${MK_SENDMAIL} != "no"
_BSD.sendmail.dist= BSD.sendmail.dist
.endif
.if ${MK_TESTS} != "no"
_BSD.tests.dist= BSD.tests.dist
.endif
NO_OBJ=
FILESDIR= /etc/mtree
.include <bsd.prog.mk>