You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
300 B
19 lines
300 B
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for caching in a mounted filesystem
|
|
#
|
|
|
|
cachefiles-y := \
|
|
bind.o \
|
|
daemon.o \
|
|
interface.o \
|
|
key.o \
|
|
main.o \
|
|
namei.o \
|
|
rdwr.o \
|
|
security.o \
|
|
xattr.o
|
|
|
|
cachefiles-$(CONFIG_CACHEFILES_HISTOGRAM) += proc.o
|
|
|
|
obj-$(CONFIG_CACHEFILES) := cachefiles.o
|
|
|