1# SPDX-License-Identifier: GPL-2.0 2 3netfs-y := \ 4 buffered_read.o \ 5 buffered_write.o \ 6 direct_read.o \ 7 direct_write.o \ 8 io.o \ 9 iterator.o \ 10 locking.o \ 11 main.o \ 12 misc.o \ 13 objects.o \ 14 output.o 15 16netfs-$(CONFIG_NETFS_STATS) += stats.o 17 18netfs-$(CONFIG_FSCACHE) += \ 19 fscache_cache.o \ 20 fscache_cookie.o \ 21 fscache_io.o \ 22 fscache_main.o \ 23 fscache_volume.o 24 25ifeq ($(CONFIG_PROC_FS),y) 26netfs-$(CONFIG_FSCACHE) += fscache_proc.o 27endif 28netfs-$(CONFIG_FSCACHE_STATS) += fscache_stats.o 29 30obj-$(CONFIG_NETFS_SUPPORT) += netfs.o 31