mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2024-11-19 13:27:49 +00:00
24 lines
483 B
Makefile
24 lines
483 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for general filesystem caching code
|
|
#
|
|
|
|
ccflags-y += -DDEFAULT_SYMBOL_NAMESPACE=ANDROID_GKI_VFS_EXPORT_ONLY
|
|
|
|
fscache-y := \
|
|
cache.o \
|
|
cookie.o \
|
|
fsdef.o \
|
|
main.o \
|
|
netfs.o \
|
|
object.o \
|
|
operation.o \
|
|
page.o
|
|
|
|
fscache-$(CONFIG_PROC_FS) += proc.o
|
|
fscache-$(CONFIG_FSCACHE_STATS) += stats.o
|
|
fscache-$(CONFIG_FSCACHE_HISTOGRAM) += histogram.o
|
|
fscache-$(CONFIG_FSCACHE_OBJECT_LIST) += object-list.o
|
|
|
|
obj-$(CONFIG_FSCACHE) := fscache.o
|