blob: fc1e81d97d661579954a1e6d573878de49cd555f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
.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>
|