diff options
author | bde <bde@FreeBSD.org> | 1996-06-23 14:28:02 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-06-23 14:28:02 +0000 |
commit | b2263f0583ea30044d4242034bf7739a5c0387ad (patch) | |
tree | b0a3839184e317f91e86c94bcf2a1ab59444dfaf /sys/modules | |
parent | 474d107d6d9d24ab922aab436eaa6ba33a5eca42 (diff) | |
download | FreeBSD-src-b2263f0583ea30044d4242034bf7739a5c0387ad.zip FreeBSD-src-b2263f0583ea30044d4242034bf7739a5c0387ad.tar.gz |
Use IPFIREWALL_MODULE instead of ACTUALLY_LKM_NOT_KERNEL to indicate
LKM'ness. ACTUALLY_LKM_NOT_KERNEL is supposed to be so ugly that it
only gets used until <machine/conf.h> goes away. bsd.kmod.mk should
define a better-named general macro for this. Some places use
PSEUDO_LKM. This is another bad name.
Makefile:
Added IPFIREWALL_VERBOSE_LIMIT option (commented out).
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/ipfw/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/modules/ipfw/Makefile b/sys/modules/ipfw/Makefile index da140b9..bef7381 100644 --- a/sys/modules/ipfw/Makefile +++ b/sys/modules/ipfw/Makefile @@ -1,13 +1,14 @@ -# $Id: Makefile,v 1.3 1995/05/30 06:06:07 rgrimes Exp $ +# $Id: Makefile,v 1.4 1996/02/24 13:41:56 phk Exp $ .PATH: ${.CURDIR}/../../sys/netinet KMOD= ipfw_mod SRCS= ip_fw.c NOMAN= -CFLAGS+= -DIPFIREWALL +CFLAGS+= -DIPFIREWALL -DIPFIREWALL_MODULE # #If you want it verbose #CFLAGS+= -DIPFIREWALL_VERBOSE +#CFLAGS+= -DIPFIREWALL_VERBOSE_LIMIT=100 # .include <bsd.kmod.mk> |