Makefile revision 138119
1# $FreeBSD: head/sys/modules/if_gif/Makefile 138119 2004-11-26 19:01:57Z brooks $
2
3.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
4
5KMOD=	if_gif
6SRCS=	if_gif.c in_gif.c opt_inet.h opt_inet6.h opt_mac.h \
7	opt_mrouting.h
8.if !defined(NOINET6)
9SRCS+=	in6_gif.c
10.endif
11
12opt_inet.h:
13	echo "#define INET 1" > ${.TARGET}
14
15opt_inet6.h:
16.if !defined(NOINET6)
17	echo "#define INET6 1" > ${.TARGET}
18.else
19	echo "" > ${.TARGET}
20.endif
21
22opt_mrouting.h:
23	echo "#define MROUTING 1" > ${.TARGET}
24
25.include <bsd.kmod.mk>
26