mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-14 22:32:30 +01:00
9d6049d5da
Remove leftover empty leading comments/blank lines that had been spacers between $FreeBSD$ and the following content in config files in src/etc. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D41548
34 lines
662 B
Makefile
34 lines
662 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>
|