d5fc25e5d6
require it. Submitted by: pjd
20 lines
306 B
Makefile
20 lines
306 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../netinet6
|
|
|
|
KMOD= ip6_mroute
|
|
|
|
SRCS= ip6_mroute.c
|
|
SRCS+= opt_inet6.h opt_mrouting.h
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
opt_inet6.h:
|
|
echo "#define INET6 1" > ${.TARGET}
|
|
opt_mrouting.h:
|
|
echo "#define MROUTING 1" > ${.TARGET}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|