Deleted Added
sdiff udiff text old ( 32990 ) new ( 40440 )
full compact
1# $Id: Makefile,v 1.5 1998/01/24 02:21:49 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=
8
9NBPFILTER?= 0
10NTUN?= 2
11
12CFLAGS+= ${PROTOS}
13CLEANFILES+= bpfilter.h opt_devfs.h opt_inet.h tun.h
14
15bpfilter.h:
16 echo "#define NBPFILTER ${NBPFILTER}" > bpfilter.h
17
18opt_devfs.h:
19 touch opt_devfs.h
20
21opt_inet.h:
22 echo "#define INET 1" > opt_inet.h
23
24tun.h:
25 echo "#define NTUN ${NTUN}" > tun.h
26
27.include <bsd.kmod.mk>