3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-22 15:15:53 +00:00
Brooklyn/fs/erofs/Makefile

12 lines
313 B
Makefile
Raw Normal View History

2021-05-27 00:09:36 +05:00
# SPDX-License-Identifier: GPL-2.0-only
2021-09-23 21:59:15 +05:00
EROFS_VERSION = "1.0"
ccflags-y += -DEROFS_VERSION=\"$(EROFS_VERSION)\"
2021-05-27 00:09:36 +05:00
obj-$(CONFIG_EROFS_FS) += erofs.o
2021-09-23 21:59:15 +05:00
erofs-objs := super.o inode.o data.o namei.o dir.o utils.o
2021-05-27 00:09:36 +05:00
erofs-$(CONFIG_EROFS_FS_XATTR) += xattr.o
erofs-$(CONFIG_EROFS_FS_ZIP) += decompressor.o zmap.o zdata.o
2021-09-23 21:59:15 +05:00