2005-04-17 06:20:36 +08:00
|
|
|
#
|
|
|
|
# Makefile for Linux CIFS VFS client
|
|
|
|
#
|
|
|
|
obj-$(CONFIG_CIFS) += cifs.o
|
|
|
|
|
2007-11-03 12:48:29 +08:00
|
|
|
cifs-y := cifsfs.o cifssmb.o cifs_debug.o connect.o dir.o file.o inode.o \
|
2011-04-20 02:23:31 +08:00
|
|
|
link.o misc.o netmisc.o smbencrypt.o transport.o asn1.o \
|
2016-04-22 18:11:38 +08:00
|
|
|
cifs_unicode.o nterr.o cifsencrypt.o \
|
2017-07-09 07:48:15 +08:00
|
|
|
readdir.o ioctl.o sess.o export.o smb1ops.o winucase.o \
|
|
|
|
smb2ops.o smb2maperror.o smb2transport.o \
|
|
|
|
smb2misc.o smb2pdu.o smb2inode.o smb2file.o
|
2010-12-07 01:52:08 +08:00
|
|
|
|
2016-04-22 18:11:38 +08:00
|
|
|
cifs-$(CONFIG_CIFS_XATTR) += xattr.o
|
2010-12-07 01:52:08 +08:00
|
|
|
cifs-$(CONFIG_CIFS_ACL) += cifsacl.o
|
2007-11-03 12:48:29 +08:00
|
|
|
|
|
|
|
cifs-$(CONFIG_CIFS_UPCALL) += cifs_spnego.o
|
2008-01-10 00:21:36 +08:00
|
|
|
|
2008-01-25 11:28:31 +08:00
|
|
|
cifs-$(CONFIG_CIFS_DFS_UPCALL) += dns_resolve.o cifs_dfs_ref.o
|
2010-07-05 20:41:50 +08:00
|
|
|
|
2010-07-05 20:42:15 +08:00
|
|
|
cifs-$(CONFIG_CIFS_FSCACHE) += fscache.o cache.o
|