blob: b55cb236cf74c0be1adf41d43e21e71d298fa1b5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Makefile for the Linux nfs filesystem routines.
3#
4
5obj-$(CONFIG_NFS_FS) += nfs.o
6
David Howells54ceac42006-08-22 20:06:13 -04007nfs-y := client.o dir.o file.o getroot.o inode.o super.o nfs2xdr.o \
David Howells24c8dbb2006-08-22 20:06:10 -04008 pagelist.o proc.o read.o symlink.o unlink.o \
Chuck Lever3ea97302007-07-01 12:13:27 -04009 write.o namespace.o mount_clnt.o
10nfs-$(CONFIG_ROOT_NFS) += nfsroot.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070011nfs-$(CONFIG_NFS_V3) += nfs3proc.o nfs3xdr.o
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +000012nfs-$(CONFIG_NFS_V3_ACL) += nfs3acl.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070013nfs-$(CONFIG_NFS_V4) += nfs4proc.o nfs4xdr.o nfs4state.o nfs4renewd.o \
14 delegation.o idmap.o \
David Howellsf7b422b2006-06-09 09:34:33 -040015 callback.o callback_xdr.o callback_proc.o \
16 nfs4namespace.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070017nfs-$(CONFIG_NFS_DIRECTIO) += direct.o
Trond Myklebusta72b4422006-01-03 09:55:41 +010018nfs-$(CONFIG_SYSCTL) += sysctl.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070019nfs-objs := $(nfs-y)