1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../netinet 4 5KMOD= ipfw 6SRCS= ip_fw2.c ip_fw_pfil.c \ 7 opt_inet.h opt_ipfw.h opt_ipdn.h opt_ipdivert.h opt_ipsec.h \ 8 opt_pfil_hooks.h 9 10CFLAGS+= -DIPFIREWALL 11# 12#If you want it verbose 13#CFLAGS+= -DIPFIREWALL_VERBOSE 14#CFLAGS+= -DIPFIREWALL_VERBOSE_LIMIT=100 15# 16#If you want it to pass all packets by default 17#CFLAGS+= -DIPFIREWALL_DEFAULT_TO_ACCEPT 18# 19opt_inet.h: 20 echo "#define INET 1" > opt_inet.h 21 22.include <bsd.kmod.mk> 23