rc.conf: Add and document the missing root_rw_mount=YES
[dragonfly.git] / sys / net / ipfw3 / Makefile
blobcf7a8ebe8da61c43d95f0342edb0f91096b1a4b1
1 KMOD= ipfw3
2 SRCS= opt_fw3.h
3 SRCS= ip_fw3.c
4 SRCS+= ip_fw3_set.c
5 SRCS+= opt_ipfw.h opt_inet.h
7 .ifndef KERNBUILDDIR
8 opt_inet.h:
9 echo '#define INET 1' > ${.OBJDIR}/${.TARGET}
11 opt_ipfw.h:
12 echo '#define IPFIREWALL3 1' > ${.OBJDIR}/${.TARGET}
13 # Debug prints
14 #echo '#define IPFIREWALL_DEBUG 1' >> ${.OBJDIR}/${.TARGET}
16 # If you want it verbose
17 #echo '#define IPFIREWALL_VERBOSE 1' >> ${.OBJDIR}/${.TARGET}
19 # If you want it to pass all packets by default
20 #echo '#define IPFIREWALL_DEFAULT_TO_ACCEPT 1' >> ${.OBJDIR}/${.TARGET}
21 .endif
23 .include <bsd.kmod.mk>