xref: /freebsd/sys/modules/ipfw/Makefile (revision bacb482d94518367b83ecea533ae07cc1b15da34)
1# $FreeBSD$
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