1999-08-28 01:08:13 +00:00
|
|
|
# $FreeBSD$
|
1994-09-16 20:24:29 +00:00
|
|
|
|
2001-01-06 14:00:42 +00:00
|
|
|
.PATH: ${.CURDIR}/../../netinet
|
|
|
|
|
1998-10-16 04:30:52 +00:00
|
|
|
KMOD= ip_mroute
|
2002-10-20 22:59:17 +00:00
|
|
|
SRCS= ip_mroute.c opt_mac.h opt_mrouting.h opt_random_ip_id.h
|
2001-01-06 14:00:42 +00:00
|
|
|
|
2001-07-25 20:15:17 +00:00
|
|
|
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
|
1994-09-16 20:24:29 +00:00
|
|
|
|
2000-05-27 01:14:33 +00:00
|
|
|
.include <bsd.kmod.mk>
|