Deleted Added
full compact
Makefile (136953) Makefile (152928)
1# $FreeBSD: head/sys/modules/ipfw/Makefile 136953 2004-10-25 20:02:34Z andre $
1# $FreeBSD: head/sys/modules/ipfw/Makefile 152928 2005-11-29 17:56:11Z ume $
2
3.PATH: ${.CURDIR}/../../netinet
4
5KMOD= ipfw
6SRCS= ip_fw2.c ip_fw_pfil.c
2
3.PATH: ${.CURDIR}/../../netinet
4
5KMOD= ipfw
6SRCS= ip_fw2.c ip_fw_pfil.c
7SRCS+= opt_inet6.h opt_ipsec.h
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
8
9CFLAGS+= -DIPFIREWALL
10#
11#If you want it verbose
12#CFLAGS+= -DIPFIREWALL_VERBOSE
13#CFLAGS+= -DIPFIREWALL_VERBOSE_LIMIT=100
14#
15#If you want it to pass all packets by default
16#CFLAGS+= -DIPFIREWALL_DEFAULT_TO_ACCEPT
17#
18
19.if !defined(KERNBUILDDIR)
20.if defined(NO_INET6)
21opt_inet6.h:
22 cat /dev/null > ${.TARGET}
23.else
24opt_inet6.h:
25 echo "#define INET6 1" > ${.TARGET}
26.endif
27
28opt_ipsec.h:
29 cat /dev/null > ${.TARGET}
30.endif
31
18.include <bsd.kmod.mk>
32.include <bsd.kmod.mk>