blob: 931cf7fd35ec8ba1e56a689b67bf6581d93916d7 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# $FreeBSD$
.include <bsd.own.mk>
FILES= 100.clean-disks \
110.clean-tmps \
120.clean-preserve \
200.backup-passwd \
330.news \
400.status-disks \
405.status-ata-raid \
406.status-gmirror \
407.status-graid3 \
408.status-gstripe \
409.status-gconcat \
420.status-network \
450.status-security \
999.local
# NB: keep these sorted by MK_* knobs
.if ${MK_ACCT} != "no"
FILES+= 310.accounting
.endif
.if ${MK_BIND_NAMED} != "no"
FILES+= 470.status-named
.endif
.if ${MK_CALENDAR} != "no"
FILES+= 300.calendar
.endif
.if ${MK_MAIL} != "no"
FILES+= 130.clean-msgs
.endif
.if ${MK_NTP} != "no"
FILES+= 480.status-ntpd
.endif
.if ${MK_PKGTOOLS} != "no"
FILES+= 490.status-pkg-changes
.endif
.if ${MK_RCMDS} != "no"
FILES+= 140.clean-rwho \
430.status-rwho
.endif
.if ${MK_SENDMAIL} != "no"
FILES+= 150.clean-hoststat \
210.backup-aliases \
440.status-mailq \
460.status-mail-rejects \
500.queuerun
.endif
.if ${MK_ZFS} != "no"
FILES+= 404.status-zfs \
800.scrub-zfs
.endif
.include <bsd.prog.mk>
|