Files

22 lines
380 B
Makefile
Raw Permalink Normal View History

2021-11-26 14:32:29 +00:00
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for caching in a mounted filesystem
#
cachefiles-y := \
cache.o \
daemon.o \
interface.o \
io.o \
key.o \
2021-11-26 14:59:10 +00:00
main.o \
namei.o \
2021-10-21 09:55:21 +01:00
security.o \
volume.o \
xattr.o
2021-11-26 14:32:29 +00:00
cachefiles-$(CONFIG_CACHEFILES_ERROR_INJECTION) += error_inject.o
cachefiles-$(CONFIG_CACHEFILES_ONDEMAND) += ondemand.o
2021-11-26 14:32:29 +00:00
obj-$(CONFIG_CACHEFILES) := cachefiles.o