17 lines
269 B
Makefile
Raw Normal View History

2026-01-21 18:59:54 +08:00
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for general filesystem caching code
#
fscache-y := \
cache.o \
cookie.o \
2026-01-29 22:25:33 +08:00
io.o \
2026-01-21 18:59:54 +08:00
main.o \
2026-01-29 22:25:33 +08:00
volume.o
2026-01-21 18:59:54 +08:00
fscache-$(CONFIG_PROC_FS) += proc.o
fscache-$(CONFIG_FSCACHE_STATS) += stats.o
obj-$(CONFIG_FSCACHE) := fscache.o