Deleted Added
full compact
Makefile (256281) Makefile (284066)
1# $FreeBSD: stable/10/sys/modules/if_gif/Makefile 193588 2009-06-06 17:01:44Z rwatson $
1# $FreeBSD: stable/10/sys/modules/if_gif/Makefile 284066 2015-06-06 12:44:42Z ae $
2
3.include <bsd.own.mk>
4
5.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
6
7KMOD= if_gif
8SRCS= if_gif.c in_gif.c opt_inet.h opt_inet6.h opt_mrouting.h
9

--- 4 unchanged lines hidden (view full) ---

14.if ${MK_INET6_SUPPORT} != "no"
15opt_inet6.h:
16 echo "#define INET6 1" > ${.TARGET}
17.endif
18
19opt_mrouting.h:
20 echo "#define MROUTING 1" > ${.TARGET}
21.else
2
3.include <bsd.own.mk>
4
5.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
6
7KMOD= if_gif
8SRCS= if_gif.c in_gif.c opt_inet.h opt_inet6.h opt_mrouting.h
9

--- 4 unchanged lines hidden (view full) ---

14.if ${MK_INET6_SUPPORT} != "no"
15opt_inet6.h:
16 echo "#define INET6 1" > ${.TARGET}
17.endif
18
19opt_mrouting.h:
20 echo "#define MROUTING 1" > ${.TARGET}
21.else
22OPT_INET6!= cat ${KERNBUILDDIR}/opt_inet6.h
22OPT_INET6!= cat ${KERNBUILDDIR}/opt_inet6.h; echo
23.if empty(OPT_INET6)
24MK_INET6_SUPPORT= no
25.endif
26.endif
27
28.if ${MK_INET6_SUPPORT} != "no"
29SRCS+= in6_gif.c
30.endif
31
32.include <bsd.kmod.mk>
23.if empty(OPT_INET6)
24MK_INET6_SUPPORT= no
25.endif
26.endif
27
28.if ${MK_INET6_SUPPORT} != "no"
29SRCS+= in6_gif.c
30.endif
31
32.include <bsd.kmod.mk>