3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-12 02:05:54 +00:00

22 lines
380 B
Makefile
Raw Normal View History

2022-04-02 18:17:33 +05: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 23:21:57 +05:00
cachefiles-$(CONFIG_CACHEFILES_ONDEMAND) += ondemand.o
2022-04-02 18:17:33 +05:00
obj-$(CONFIG_CACHEFILES) := cachefiles.o