]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/if_gif/Makefile
This commit was generated by cvs2svn to compensate for changes in r149749,
[FreeBSD/FreeBSD.git] / sys / modules / if_gif / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
4
5 KMOD=   if_gif
6 SRCS=   if_gif.c in_gif.c opt_inet.h opt_inet6.h opt_mac.h \
7         opt_mrouting.h
8 .if !defined(NO_INET6)
9 SRCS+=  in6_gif.c
10 .endif
11
12 opt_inet.h:
13         echo "#define INET 1" > ${.TARGET}
14
15 .if !defined(NO_INET6)
16 opt_inet6.h:
17         echo "#define INET6 1" > ${.TARGET}
18 .endif
19
20 opt_mrouting.h:
21         echo "#define MROUTING 1" > ${.TARGET}
22
23 .include <bsd.kmod.mk>