kernel - Enable busmaster on bridges (BIOS might not)
[dragonfly.git] / sys / net / ipfw3 / Makefile
blobd1a0cb1bb50bee708e91c9b9074e3c6216029e8b
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 BUILDING_WITH_KERNEL
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>