]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - sys/modules/if_tun/Makefile
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / sys / modules / if_tun / Makefile
1 # $FreeBSD$
2
3 .PATH: ${.CURDIR}/../../net
4
5 KMOD=   if_tun
6 SRCS=   if_tun.c opt_atalk.h opt_inet.h opt_inet6.h opt_ipx.h
7
8 .if !defined(KERNBUILDDIR)
9 opt_atalk.h:
10         echo "#define NETATALK 1" > ${.TARGET}
11
12 opt_inet.h:
13         echo "#define INET 1" > ${.TARGET}
14
15 opt_inet6.h:
16         echo "#define INET6 1" > ${.TARGET}
17
18 opt_ipx.h:
19         echo "#define IPX 1" > ${.TARGET}
20 .endif
21
22 .include <bsd.kmod.mk>