Makefile revision 259065
1# $FreeBSD: releng/10.0/etc/periodic/security/Makefile 220049 2011-03-27 03:06:58Z dougb $
2
3.include <bsd.own.mk>
4
5FILES=	100.chksetuid \
6	110.neggrpperm \
7	200.chkmounts \
8	300.chkuid0 \
9	400.passwdless \
10	410.logincheck \
11	700.kernelmsg \
12	800.loginfail \
13	900.tcpwrap \
14	security.functions
15
16# NB: keep these sorted by MK_* knobs
17
18.if ${MK_IPFILTER} != "no"
19FILES+=	510.ipfdenied
20FILES+=	610.ipf6denied
21.endif
22
23.if ${MK_IPFW} != "no"
24FILES+=	500.ipfwdenied \
25	550.ipfwlimit
26.endif
27
28.if ${MK_PF} != "no"
29FILES+=	520.pfdenied
30.endif
31
32.if ${MK_PKGTOOLS} != "no"
33FILES+=	460.chkportsum
34.endif
35
36.include <bsd.prog.mk>
37