d8456aa881
mismatched checksum PR: conf/124641 Submitted by: Alex Kozlov <spam@rm-rf.kiev.ua> Approved by: delphij (mentor)
32 lines
455 B
Makefile
32 lines
455 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
FILES= 100.chksetuid \
|
|
200.chkmounts \
|
|
300.chkuid0 \
|
|
400.passwdless \
|
|
410.logincheck \
|
|
460.chkportsum \
|
|
700.kernelmsg \
|
|
800.loginfail \
|
|
900.tcpwrap \
|
|
security.functions
|
|
|
|
# NB: keep these sorted by MK_* knobs
|
|
|
|
.if ${MK_IPFILTER} != "no"
|
|
FILES+= 510.ipfdenied
|
|
.endif
|
|
|
|
.if ${MK_IPFW} != "no"
|
|
FILES+= 500.ipfwdenied \
|
|
550.ipfwlimit
|
|
.endif
|
|
|
|
.if ${MK_PF} != "no"
|
|
FILES+= 520.pfdenied
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|