Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sys / net / ipfw / Makefile
1 # $FreeBSD: src/sys/modules/ipfw/Makefile,v 1.11.2.1 2003/02/14 14:09:21 maxim Exp $
2 # $DragonFly: src/sys/net/ipfw/Makefile,v 1.2 2003/06/17 04:28:44 dillon Exp $
3
4 .PATH:  ${.CURDIR}/../../netinet
5 KMOD=   ipfw
6 NOMAN=
7 CFLAGS+= -DIPFIREWALL
8 .if defined(IPFW2)
9 SRCS=   ip_fw2.c
10 CFLAGS+= -DIPFW2
11 .else
12 SRCS=   ip_fw.c
13 .endif
14 #
15 #If you want it verbose
16 #CFLAGS+= -DIPFIREWALL_VERBOSE
17 #CFLAGS+= -DIPFIREWALL_VERBOSE_LIMIT=100
18 #
19 #If you want it to pass all packets by default
20 #CFLAGS+= -DIPFIREWALL_DEFAULT_TO_ACCEPT
21 #
22
23 .include <bsd.kmod.mk>