Makefile revision 134347
1# $FreeBSD: head/sys/modules/ipfw/Makefile 134347 2004-08-26 14:35:05Z ru $
2
3.PATH: ${.CURDIR}/../../netinet
4
5KMOD=	ipfw
6SRCS=	ip_fw2.c ip_fw_pfil.c
7
8CFLAGS+= -DIPFIREWALL
9#
10#If you want it verbose
11#CFLAGS+= -DIPFIREWALL_VERBOSE
12#CFLAGS+= -DIPFIREWALL_VERBOSE_LIMIT=100
13#
14#If you want it to pass all packets by default
15#CFLAGS+= -DIPFIREWALL_DEFAULT_TO_ACCEPT
16#
17#If you want it with divert(4) support (kernel must be compiled
18#with "options IPDIVERT" for this to work)
19#CFLAGS+= -DIPDIVERT
20#
21
22.include <bsd.kmod.mk>
23