mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
Change-Id: I770a6de39a25b71cb9609343b93e8b26cf056017 Signed-off-by: Richard Raya <rdxzv.dev@gmail.com>
16 lines
580 B
Makefile
16 lines
580 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
ccflags-y += -mllvm -inline-threshold=15000
|
|
ccflags-y += -mllvm -inlinehint-threshold=10000
|
|
|
|
obj-$(CONFIG_F2FS_FS) += f2fs.o
|
|
|
|
f2fs-y := dir.o file.o inode.o namei.o hash.o super.o inline.o
|
|
f2fs-y += checkpoint.o gc.o data.o node.o segment.o recovery.o
|
|
f2fs-y += shrinker.o extent_cache.o sysfs.o
|
|
f2fs-$(CONFIG_F2FS_STAT_FS) += debug.o
|
|
f2fs-$(CONFIG_F2FS_FS_XATTR) += xattr.o
|
|
f2fs-$(CONFIG_F2FS_FS_POSIX_ACL) += acl.o
|
|
f2fs-$(CONFIG_FS_VERITY) += verity.o
|
|
f2fs-$(CONFIG_F2FS_FS_COMPRESSION) += compress.o
|
|
f2fs-$(CONFIG_F2FS_IOSTAT) += iostat.o
|