2021-11-26 14:32:29 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
#
|
|
|
|
|
# Makefile for caching in a mounted filesystem
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
cachefiles-y := \
|
2021-10-21 08:59:46 +01:00
|
|
|
cache.o \
|
2021-11-26 15:12:07 +00:00
|
|
|
daemon.o \
|
2021-11-26 14:29:06 +00:00
|
|
|
interface.o \
|
2021-10-21 11:05:53 +01:00
|
|
|
io.o \
|
2021-11-17 15:48:06 +00:00
|
|
|
key.o \
|
2021-11-26 14:59:10 +00:00
|
|
|
main.o \
|
2021-11-18 08:58:08 +00:00
|
|
|
namei.o \
|
2021-10-21 09:55:21 +01:00
|
|
|
security.o \
|
2021-11-17 16:11:07 +00:00
|
|
|
volume.o \
|
|
|
|
|
xattr.o
|
2021-11-26 14:32:29 +00:00
|
|
|
|
2021-10-21 08:15:26 +01:00
|
|
|
cachefiles-$(CONFIG_CACHEFILES_ERROR_INJECTION) += error_inject.o
|
2022-04-25 20:21:24 +08:00
|
|
|
cachefiles-$(CONFIG_CACHEFILES_ONDEMAND) += ondemand.o
|
2021-10-21 08:15:26 +01:00
|
|
|
|
2021-11-26 14:32:29 +00:00
|
|
|
obj-$(CONFIG_CACHEFILES) := cachefiles.o
|