1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for general filesystem caching code 4# 5 6fscache-y := \ 7 cache.o \ 8 main.o \ 9 volume.o 10 11fscache-$(CONFIG_PROC_FS) += proc.o 12fscache-$(CONFIG_FSCACHE_STATS) += stats.o 13 14obj-$(CONFIG_FSCACHE) := fscache.o 15