summaryrefslogtreecommitdiff
path: root/sys/modules/ip_mroute_mod
diff options
context:
space:
mode:
authorDavid Malone <dwmalone@FreeBSD.org>2004-08-14 15:32:40 +0000
committerDavid Malone <dwmalone@FreeBSD.org>2004-08-14 15:32:40 +0000
commit1f44b0a1b539198ce55bf97e73d51ded20a55ab4 (patch)
tree56a806b0847f95ede378bb97ce9bfcb595420ea2 /sys/modules/ip_mroute_mod
parente7581f0fc2b97703022b42069967a8cfca46e8a2 (diff)
Notes
Diffstat (limited to 'sys/modules/ip_mroute_mod')
-rw-r--r--sys/modules/ip_mroute_mod/Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/modules/ip_mroute_mod/Makefile b/sys/modules/ip_mroute_mod/Makefile
index 41dbceccef5e..be135def4026 100644
--- a/sys/modules/ip_mroute_mod/Makefile
+++ b/sys/modules/ip_mroute_mod/Makefile
@@ -3,19 +3,11 @@
.PATH: ${.CURDIR}/../../netinet
KMOD= ip_mroute
-SRCS= ip_mroute.c opt_mac.h opt_mrouting.h opt_random_ip_id.h
+SRCS= ip_mroute.c opt_mac.h opt_mrouting.h
CFLAGS+= -DMROUTE_KLD
-RANDOM_IP_ID?= 0 # 0/1 - should jibe with kernel configuration
-
opt_mrouting.h:
echo "#define MROUTING 1" > ${.TARGET}
-opt_random_ip_id.h:
- touch ${.TARGET}
-.if ${RANDOM_IP_ID} > 0
- echo "#define RANDOM_IP_ID 1" > ${.TARGET}
-.endif
-
.include <bsd.kmod.mk>