]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/ip_mroute_mod/Makefile
Remove unnecessary inclusions of bsd.own.mk.
[FreeBSD/FreeBSD.git] / sys / modules / ip_mroute_mod / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
4
5 KMOD=   ip_mroute
6
7 SRCS=   ip_mroute.c
8 SRCS+=  opt_inet.h opt_mrouting.h
9
10 .if !defined(KERNBUILDDIR)
11 opt_inet.h:
12         echo "#define INET 1" > ${.TARGET}
13 opt_mrouting.h:
14         echo "#define MROUTING 1" > ${.TARGET}
15 .endif
16
17 .include <bsd.kmod.mk>