1# $FreeBSD$ 2 3.include <src.opts.mk> 4 5FILES= 100.clean-disks \ 6 110.clean-tmps \ 7 120.clean-preserve \ 8 200.backup-passwd \ 9 210.backup-aliases \ 10 330.news \ 11 400.status-disks \ 12 401.status-graid \ 13 406.status-gmirror \ 14 407.status-graid3 \ 15 408.status-gstripe \ 16 409.status-gconcat \ 17 420.status-network \ 18 430.status-uptime \ 19 450.status-security \ 20 510.status-world-kernel \ 21 999.local 22 23# NB: keep these sorted by MK_* knobs 24 25.if ${MK_ACCT} != "no" 26FILES+= 310.accounting 27.endif 28 29.if ${MK_CALENDAR} != "no" 30FILES+= 300.calendar 31.endif 32 33.if ${MK_MAIL} != "no" 34FILES+= 130.clean-msgs 35.endif 36 37.if ${MK_NTP} != "no" 38FILES+= 480.status-ntpd 39.endif 40 41.if ${MK_RCMDS} != "no" 42FILES+= 140.clean-rwho 43.endif 44 45.if ${MK_SENDMAIL} != "no" 46FILES+= 150.clean-hoststat \ 47 440.status-mailq \ 48 460.status-mail-rejects \ 49 500.queuerun 50.endif 51 52.if ${MK_ZFS} != "no" 53FILES+= 404.status-zfs \ 54 800.scrub-zfs 55.endif 56 57.include <bsd.prog.mk> 58