mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 21:18:59 +00:00
690f477d75
control over the result of buildworld and installworld; this especially helps packaging systems such as nanobsd Reviewed by: various (posted to arch) MFC after: 1 month
31 lines
437 B
Makefile
31 lines
437 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
FILES= 100.chksetuid \
|
|
200.chkmounts \
|
|
300.chkuid0 \
|
|
400.passwdless \
|
|
410.logincheck \
|
|
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>
|