Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
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 main.o \
11 netfs.o \
12 object.o \
13 operation.o \
14 page.o
15
16fscache-$(CONFIG_PROC_FS) += proc.o
17fscache-$(CONFIG_FSCACHE_STATS) += stats.o
18fscache-$(CONFIG_FSCACHE_HISTOGRAM) += histogram.o
19fscache-$(CONFIG_FSCACHE_OBJECT_LIST) += object-list.o
20
21obj-$(CONFIG_FSCACHE) := fscache.o