3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-30 23:02:18 +00:00
Brooklyn/fs/cachefiles/Makefile

22 lines
380 B
Makefile
Raw Permalink Normal View History

2022-04-02 13:17:33 +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 \
main.o \
namei.o \
security.o \
volume.o \
xattr.o
cachefiles-$(CONFIG_CACHEFILES_ERROR_INJECTION) += error_inject.o
2022-09-13 18:21:57 +00:00
cachefiles-$(CONFIG_CACHEFILES_ONDEMAND) += ondemand.o
2022-04-02 13:17:33 +00:00
obj-$(CONFIG_CACHEFILES) := cachefiles.o