head	1.11;
access;
symbols
	RELENG_2_2_8_RELEASE:1.1
	RELENG_3_0_0_RELEASE:1.10
	RELENG_2_2_7_RELEASE:1.1
	RELENG_2_2_6_RELEASE:1.1
	RELENG_2_2_5_RELEASE:1.1
	RELENG_2_2_2_RELEASE:1.1
	RELENG_2_2_1_RELEASE:1.1
	RELENG_2_2_0_RELEASE:1.1
	RELENG_2_1_7_RELEASE:1.1
	RELENG_2_1_6_1_RELEASE:1.1
	RELENG_2_1_6_RELEASE:1.1
	RELENG_2_2:1.1.0.8
	RELENG_2_2_BP:1.1
	RELENG_2_1_5_RELEASE:1.1
	RELENG_2_1_0_RELEASE:1.1
	RELENG_2_1_0:1.1.0.6
	RELENG_2_1_0_BP:1.1
	RELENG_2_0_5_RELEASE:1.1
	RELENG_2_0_5:1.1.0.4
	RELENG_2_0_5_BP:1.1
	RELENG_2_0_5_ALPHA:1.1
	RELEASE_2_0:1.1
	BETA_2_0:1.1
	ALPHA_2_0:1.1.0.2;
locks; strict;
comment	@# @;


1.11
date	98.12.27.19.38.08;	author sos;	state dead;
branches;
next	1.10;

1.10
date	98.07.07.02.27.09;	author bde;	state Exp;
branches;
next	1.9;

1.9
date	98.07.02.14.09.44;	author sos;	state Exp;
branches;
next	1.8;

1.8
date	98.06.30.11.29.01;	author jmg;	state Exp;
branches;
next	1.7;

1.7
date	98.06.30.11.19.20;	author jmg;	state Exp;
branches;
next	1.6;

1.6
date	98.02.06.23.54.23;	author eivind;	state Exp;
branches;
next	1.5;

1.5
date	98.02.04.21.56.37;	author eivind;	state Exp;
branches;
next	1.4;

1.4
date	98.01.09.01.01.21;	author eivind;	state Exp;
branches;
next	1.3;

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

1.2
date	97.01.14.06.22.13;	author jkh;	state Exp;
branches;
next	1.1;

1.1
date	94.09.22.22.12.59;	author wollman;	state Exp;
branches
	1.1.6.1
	1.1.8.1;
next	;

1.1.6.1
date	99.09.05.11.21.54;	author peter;	state Exp;
branches;
next	;

1.1.8.1
date	99.09.05.11.20.35;	author peter;	state Exp;
branches;
next	;


desc
@@


1.11
log
@Remove LKM's depricated by modules.
@
text
@#	$Id: Makefile,v 1.10 1998/07/07 02:27:09 bde Exp $

.PATH: ${.CURDIR}/../../sys/nfs
KMOD=	nfs_mod
SRCS=	nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
	nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c \
	nfs_vnops.c opt_inet.h opt_nfs.h opt_vmpage.h
NFS_INET?=	1	# 0/1 - requires INET to be configured in kernel
NOMAN=
VFS_LKM=
CFLAGS+= -DNFS
CLEANFILES= opt_inet.h opt_nfs.h opt_vmpage.h

opt_inet.h:
	touch ${.TARGET}
.if ${NFS_INET} > 0
	echo "#define INET 1" > ${.TARGET}
.endif

opt_nfs.h opt_vmpage.h:
	touch ${.TARGET}

.include <bsd.kmod.mk>
@


1.10
log
@Finished previous fix - don't forget to add one dummy options header
to CLEANFILES.

Fixed lots of style bugs.
@
text
@d1 1
a1 1
#	$Id$
@


1.9
log
@Fix the N'th occurance of missed bits due to opt_???? mucking.

Doesn't anybody TEST code before committing....

This is the N+1'th time these laste couble of days...
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.8 1998/06/30 11:29:01 jmg Exp $
d3 4
a6 4
.PATH:  ${.CURDIR}/../../sys/nfs
KMOD=   nfs_mod
SRCS=   nfs_bio.c nfs_node.c nfs_nqlease.c nfs_serv.c nfs_socket.c \
        nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c \
a10 1

d12 1
a12 1
CLEANFILES+=	opt_inet.h opt_nfs.h
d15 1
a15 1
	touch opt_inet.h
d17 1
a17 1
	echo "#define INET 1" > opt_inet.h
a18 2
opt_nfs.h:
	touch opt_nfs.h
d20 2
a21 2
opt_vmpage.h:
	touch opt_vmpage.h
@


1.8
log
@add new opt_nfs.h to cleanfiles...
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.7 1998/06/30 11:19:20 jmg Exp $
d7 1
a7 1
	nfs_vnops.c opt_inet.h
d22 3
@


1.7
log
@fix buildworld hopefully be3fore anyone complains...

NFS_*TIMO should possibly be converted to sysctl vars (jkh's suggestion),
but in some cases it looks like nfs keeps a copy of the value in a struct

hash sizes are already ifdef'd KERNEL, so there aren't userland inpact
from them...
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.6 1998/02/06 23:54:23 eivind Exp $
d13 1
a13 1
CLEANFILES+=	opt_inet.h
@


1.6
log
@Back out opt_diagnostic.h changes.
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.5 1998/02/04 21:56:37 eivind Exp $
d20 2
@


1.5
log
@Make the LKMs handle DIAGNOSTIC as a new-style option.
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.4 1998/01/09 01:01:21 eivind Exp $
d7 1
a7 1
	nfs_vnops.c opt_diagnostic.h opt_inet.h
d13 1
a13 4
CLEANFILES+=opt_diagnostic.h opt_inet.h

opt_diagnostic.h:
	touch opt_diagnostic.h
@


1.4
log
@Minor fixups after INET option change.
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.3 1997/02/22 12:48:40 peter Exp $
d7 1
a7 1
	nfs_vnops.c opt_inet.h
d13 4
a16 1
CLEANFILES+=	opt_inet.h
@


1.3
log
@Revert $FreeBSD$ back to $Id$
@
text
@d1 1
a1 1
#       $Id$
d6 3
a8 1
        nfs_srvcache.c nfs_subs.c nfs_syscalls.c nfs_vfsops.c nfs_vnops.c
d11 9
a19 1
CFLAGS+= -DNFS -DINET
@


1.2
log
@Make the long-awaited change from $Id$ to $FreeBSD$

This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore.  This update would have been
insane otherwise.
@
text
@d1 1
a1 1
#       $FreeBSD$
@


1.1
log
@Create NFS LKM.
@
text
@d1 1
a1 1
#       $Id: Makefile,v 1.1 1994/09/21 23:27:07 wollman Exp $
@


1.1.6.1
log
@$Id$ -> $FreeBSD$
@
text
@d1 1
a1 1
# $FreeBSD$
@


1.1.8.1
log
@$Id$ -> $FreeBSD$
@
text
@d1 1
a1 1
# $FreeBSD$
@

