Deleted Added
full compact
Makefile (139399) Makefile (151350)
1# $FreeBSD: head/sys/modules/if_tun/Makefile 139399 2004-12-29 08:50:35Z imp $
1# $FreeBSD: head/sys/modules/if_tun/Makefile 151350 2005-10-14 23:30:17Z yar $
2
3.PATH: ${.CURDIR}/../../net
4
5KMOD= if_tun
6SRCS= if_tun.c opt_atalk.h opt_inet.h opt_inet6.h opt_ipx.h opt_mac.h
7
2
3.PATH: ${.CURDIR}/../../net
4
5KMOD= if_tun
6SRCS= if_tun.c opt_atalk.h opt_inet.h opt_inet6.h opt_ipx.h opt_mac.h
7
8.if !defined(KERNBUILDDIR)
8opt_atalk.h:
9 echo "#define NETATALK 1" > ${.TARGET}
10
11opt_inet.h:
12 echo "#define INET 1" > ${.TARGET}
13
14opt_inet6.h:
15 echo "#define INET6 1" > ${.TARGET}
16
17opt_ipx.h:
18 echo "#define IPX 1" > ${.TARGET}
9opt_atalk.h:
10 echo "#define NETATALK 1" > ${.TARGET}
11
12opt_inet.h:
13 echo "#define INET 1" > ${.TARGET}
14
15opt_inet6.h:
16 echo "#define INET6 1" > ${.TARGET}
17
18opt_ipx.h:
19 echo "#define IPX 1" > ${.TARGET}
20.endif
19
20.include <bsd.kmod.mk>
21
22.include <bsd.kmod.mk>