Makefile revision 32725
1#       $Id: Makefile,v 1.4 1998/01/08 23:50:27 eivind Exp $
2
3.PATH:  ${.CURDIR}/../../sys/net
4KMOD=   if_tun_mod
5SRCS=   if_tun.c bpfilter.h opt_devfs.h opt_inet.h tun.h
6NOMAN=
7PSEUDO_LKM=
8CFLAGS+= -I.
9
10NBPFILTER?=	0
11NTUN?=		2
12
13CFLAGS+= ${PROTOS}
14CLEANFILES+=	bpfilter.h opt_devfs.h opt_inet.h tun.h
15
16bpfilter.h:
17	echo "#define NBPFILTER ${NBPFILTER}" > bpfilter.h
18
19opt_devfs.h:
20	touch opt_devfs.h
21
22opt_inet.h:
23	echo "#define INET 1" > opt_inet.h
24
25tun.h:
26	echo "#define NTUN ${NTUN}" > tun.h
27
28.include <bsd.kmod.mk>
29