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