Makefile revision 193588
1# $FreeBSD: head/sys/modules/ip_mroute_mod/Makefile 193588 2009-06-06 17:01:44Z rwatson $
2
3.include <bsd.own.mk>
4
5.PATH: ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
6
7KMOD=	ip_mroute
8
9SRCS=	ip_mroute.c
10SRCS+=	opt_inet.h opt_mrouting.h opt_route.h
11
12.if !defined(KERNBUILDDIR)
13opt_inet.h:
14	echo "#define INET 1" > ${.TARGET}
15opt_mrouting.h:
16	echo "#define MROUTING 1" > ${.TARGET}
17.endif
18
19.include <bsd.kmod.mk>
20