Makefile 335 字节
Newer Older
1
obj-$(CONFIG_9P_FS) := 9p.o
2

3
9p-objs := \
4 5
	vfs_super.o \
	vfs_inode.o \
6
	vfs_inode_dotl.o \
7
	vfs_addr.o \
8 9 10 11
	vfs_file.o \
	vfs_dir.o \
	vfs_dentry.o \
	v9fs.o \
12 13
	fid.o  \
	xattr.o \
14 15
	xattr_user.o \
	xattr_trusted.o
16

17
9p-$(CONFIG_9P_FSCACHE) += cache.o
18
9p-$(CONFIG_9P_FS_POSIX_ACL) += acl.o
19
9p-$(CONFIG_9P_FS_SECURITY) += xattr_security.o