22 lines
380 B
Makefile
Raw Normal View History

2026-01-21 18:59:54 +08:00
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for caching in a mounted filesystem
#
cachefiles-y := \
2026-01-29 22:25:33 +08:00
cache.o \
2026-01-21 18:59:54 +08:00
daemon.o \
interface.o \
2026-01-29 22:25:33 +08:00
io.o \
2026-01-21 18:59:54 +08:00
key.o \
main.o \
namei.o \
security.o \
2026-01-29 22:25:33 +08:00
volume.o \
2026-01-21 18:59:54 +08:00
xattr.o
2026-01-29 22:25:33 +08:00
cachefiles-$(CONFIG_CACHEFILES_ERROR_INJECTION) += error_inject.o
cachefiles-$(CONFIG_CACHEFILES_ONDEMAND) += ondemand.o
2026-01-21 18:59:54 +08:00
obj-$(CONFIG_CACHEFILES) := cachefiles.o