1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for general filesystem caching code 4# 5 6fscache-y := \ 7 cache.o \ 8 cookie.o \ 9 fsdef.o \ 10 io.o \ 11 main.o \ 12 netfs.o \ 13 object.o \ 14 operation.o \ 15 page.o 16 17fscache-$(CONFIG_PROC_FS) += proc.o 18fscache-$(CONFIG_FSCACHE_STATS) += stats.o 19fscache-$(CONFIG_FSCACHE_HISTOGRAM) += histogram.o 20fscache-$(CONFIG_FSCACHE_OBJECT_LIST) += object-list.o 21 22obj-$(CONFIG_FSCACHE) := fscache.o 23