head	1.10;
access;
symbols
	RELENG_4_11_0_RELEASE:1.5.2.1
	RELENG_4_11:1.5.2.1.0.16
	RELENG_4_11_BP:1.5.2.1
	RELENG_4_10_0_RELEASE:1.5.2.1
	RELENG_4_10:1.5.2.1.0.14
	RELENG_4_10_BP:1.5.2.1
	RELENG_4_9_0_RELEASE:1.5.2.1
	RELENG_4_9:1.5.2.1.0.12
	RELENG_4_9_BP:1.5.2.1
	RELENG_4_8_0_RELEASE:1.5.2.1
	RELENG_4_8:1.5.2.1.0.10
	RELENG_4_8_BP:1.5.2.1
	RELENG_4_7_0_RELEASE:1.5.2.1
	RELENG_4_7:1.5.2.1.0.8
	RELENG_4_7_BP:1.5.2.1
	RELENG_4_6_2_RELEASE:1.5.2.1
	RELENG_4_6_1_RELEASE:1.5.2.1
	RELENG_4_6_0_RELEASE:1.5.2.1
	RELENG_4_6:1.5.2.1.0.6
	RELENG_4_6_BP:1.5.2.1
	RELENG_4_5_0_RELEASE:1.5.2.1
	RELENG_4_5:1.5.2.1.0.4
	RELENG_4_5_BP:1.5.2.1
	RELENG_4_4_0_RELEASE:1.5.2.1
	RELENG_4_4:1.5.2.1.0.2
	RELENG_4_4_BP:1.5.2.1
	RELENG_4_3_0_RELEASE:1.5
	RELENG_4_3:1.5.0.4
	RELENG_4_3_BP:1.5
	RELENG_4_2_0_RELEASE:1.5
	RELENG_4_1_1_RELEASE:1.5
	PRE_SMPNG:1.8
	RELENG_4_1_0_RELEASE:1.5
	RELENG_4_0_0_RELEASE:1.5
	RELENG_4:1.5.0.2
	RELENG_4_BP:1.5
	POST_VFS_BIO_NFS_PATCH:1.2
	PRE_VFS_BIO_NFS_PATCH:1.2
	POST_SMP_VMSHARE:1.2
	PRE_SMP_VMSHARE:1.2
	POST_NEWBUS:1.2
	PRE_NEWBUS:1.2;
locks; strict;
comment	@# @;


1.10
date	2001.03.09.20.10.35;	author phk;	state dead;
branches;
next	1.9;

1.9
date	2001.01.06.14.00.40;	author obrien;	state Exp;
branches;
next	1.8;

1.8
date	2000.09.02.19.17.27;	author phk;	state Exp;
branches;
next	1.7;

1.7
date	2000.05.27.01.14.30;	author peter;	state Exp;
branches;
next	1.6;

1.6
date	2000.05.04.12.08.47;	author peter;	state Exp;
branches;
next	1.5;

1.5
date	99.11.28.18.53.42;	author bde;	state Exp;
branches
	1.5.2.1;
next	1.4;

1.4
date	99.09.27.01.04.44;	author peter;	state Exp;
branches;
next	1.3;

1.3
date	99.08.28.00.48.03;	author peter;	state Exp;
branches;
next	1.2;

1.2
date	99.01.21.17.23.30;	author peter;	state Exp;
branches;
next	1.1;

1.1
date	99.01.21.17.18.34;	author peter;	state Exp;
branches;
next	;

1.5.2.1
date	2001.07.24.09.49.43;	author dd;	state Exp;
branches;
next	1.5.2.2;

1.5.2.2
date	2012.11.17.07.26.37;	author svnexp;	state Exp;
branches;
next	;


desc
@@


1.10
log
@Remove vn(4) driver.
@
text
@# $FreeBSD: src/sys/modules/vn/Makefile,v 1.9 2001/01/06 14:00:40 obrien Exp $ 

.PATH: ${.CURDIR}/../../dev/vn

KMOD=	vn
SRCS=	vn.c vnode_if.h
NOMAN=

.include <bsd.kmod.mk>
@


1.9
log
@Use a consistent style and one much closer to the rest of /usr/src
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/vn/Makefile,v 1.8 2000/09/02 19:17:27 phk Exp $ 
@


1.8
log
@Avoid the modules madness I inadvertently introduced by making the
cloning infrastructure standard in kern_conf.  Modules are now
the same with or without devfs support.

If you need to detect if devfs is present, in modules or elsewhere,
check the integer variable "devfs_present".

This happily removes an ugly hack from kern/vfs_conf.c.

This forces a rename of the eventhandler and the standard clone
helper function.

Include <sys/eventhandler.h> in <sys/conf.h>: it's a helper #include
like <sys/queue.h>

Remove all #includes of opt_devfs.h they no longer matter.
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/vn/Makefile,v 1.7 2000/05/27 01:14:30 peter Exp $ 
d3 4
a6 3
.PATH:  ${.CURDIR}/../../dev/vn
KMOD=   vn
SRCS=   vn.c vnode_if.h
@


1.7
log
@Use .include <bsd.kmod.mk> to get to ../../*/conf/kmod.mk instead of
encoding the relative path.
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/vn/Makefile,v 1.6 2000/05/04 12:08:47 peter Exp $ 
d5 1
a5 1
SRCS=   vn.c vnode_if.h opt_devfs.h
@


1.6
log
@Pull in sys/conf/kmod.mk, rather than /usr/share/mk/bsd.kmod.mk.
This means that the kernel can be totally self contained now and is not
dependent on the last buildworld to update /usr/share/mk.  This might
also make it easier to build 5.x kernels on 4.0 boxes etc, assuming
gensetdefs and config(8) are updated.
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/vn/Makefile,v 1.5 1999/11/28 18:53:42 bde Exp $ 
d8 1
a8 1
.include "${.CURDIR}/../../conf/kmod.mk"
@


1.5
log
@Removed special rules for building and cleaning device interface files
and empty options files.  The rules are now generated automatically in
bsd.kmod.mk.  Cleaned up related things ($S and ${CLEANFILES}).
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/vn/Makefile,v 1.4 1999/09/27 01:04:44 peter Exp $ 
d8 1
a8 1
.include <bsd.kmod.mk>
@


1.5.2.1
log
@Removing old, broken DEVFS from -stable phase one: remove support
code, everything under #ifdef DEVFS (and thus opt_devfs.h), and most
references to the DEVFS routines.  Code that really couldn't be
reached was left alone.  Removal of the actual DEVFS implementation
will come later.

Approved by:	-stable
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/vn/Makefile,v 1.5 1999/11/28 18:53:42 bde Exp $ 
d5 1
a5 1
SRCS=   vn.c vnode_if.h
@


1.5.2.2
log
@Switch importer
@
text
@d1 1
a1 1
# $FreeBSD: stable/4/sys/modules/vn/Makefile 80267 2001-07-24 09:49:45Z dd $ 
@


1.4
log
@Zap some unused echo "#define NFOO 1" > foo.h style defunct stuff.
@
text
@d1 1
a1 1
# $FreeBSD: src/sys/modules/vn/Makefile,v 1.3 1999/08/28 00:48:03 peter Exp $ 
a6 5

CLEANFILES+=	vnode_if.h vnode_if.c opt_devfs.h

opt_devfs.h:
	touch opt_devfs.h
@


1.3
log
@$Id$ -> $FreeBSD$
@
text
@d1 1
a1 1
# $FreeBSD$ 
d5 1
a5 1
SRCS=   vn.c vn.h vnode_if.h opt_devfs.h
d8 1
a8 5
NVN?=		8
CLEANFILES+=	vn.h vnode_if.h vnode_if.c opt_devfs.h

vn.h:
	echo "#define NVN ${NVN}" > vn.h
@


1.2
log
@Oops, I accidently had devfs enabled in the vn module..
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.1 1999/01/21 17:18:34 peter Exp $ 
@


1.1
log
@Build a vn module.  I've lost count of the number of times I could have
used vn but didn't have it compiled in.
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.7 1998/10/16 04:30:42 peter Exp $ 
a15 1
	echo "#define DEVFS 1" > opt_devfs.h
@
