72bf91e250
Remove the infrasturcture needed to create the libsoft directories. Sponsored by: Netflix
32 lines
548 B
Makefile
32 lines
548 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.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.lib32.dist} \
|
|
${_BSD.sendmail.dist} \
|
|
${_BSD.tests.dist} \
|
|
BSD.usr.dist \
|
|
BSD.var.dist
|
|
|
|
.if ${MK_LIB32} != "no"
|
|
_BSD.lib32.dist= BSD.lib32.dist
|
|
.endif
|
|
.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>
|