xref: /dragonfly/sys/net/tun/Makefile (revision 32efd857)
1# $FreeBSD: src/sys/modules/if_tun/Makefile,v 1.19.2.1 2001/07/24 09:49:42 dd Exp $
2
3KMOD=   if_tun
4SRCS=   if_tun.c opt_inet.h opt_inet6.h
5
6.if !defined(KERNBUILDDIR)
7opt_inet.h:
8	echo "#define INET 1" > ${.TARGET}
9
10opt_inet6.h:
11	echo "#define INET6 1" > ${.TARGET}
12.endif
13
14.include <bsd.kmod.mk>
15