Makefile revision 40440
1125563Snyan#       $Id: Makefile,v 1.6 1998/02/01 18:12:14 bde Exp $
2125563Snyan
3125563Snyan.PATH:  ${.CURDIR}/../../net
4KMOD=   if_tun
5SRCS=   if_tun.c bpfilter.h opt_devfs.h opt_inet.h tun.h
6NOMAN=
7
8NBPFILTER?=	0
9NTUN?=		2
10
11CFLAGS+= ${PROTOS}
12CLEANFILES+=	bpfilter.h opt_devfs.h opt_inet.h tun.h
13
14bpfilter.h:
15	echo "#define NBPFILTER ${NBPFILTER}" > bpfilter.h
16
17opt_devfs.h:
18	touch opt_devfs.h
19
20opt_inet.h:
21	echo "#define INET 1" > opt_inet.h
22
23tun.h:
24	echo "#define NTUN ${NTUN}" > tun.h
25
26.include <bsd.kmod.mk>
27