1# SPDX-License-Identifier: GPL-2.0
2
3EROFS_VERSION = "1.0pre1"
4
5ccflags-y += -Wall -DEROFS_VERSION=\"$(EROFS_VERSION)\"
6
7obj-$(CONFIG_EROFS_FS) += erofs.o
8# staging requirement: to be self-contained in its own directory
9ccflags-y += -I$(src)/include
10erofs-objs := super.o inode.o data.o namei.o dir.o utils.o
11erofs-$(CONFIG_EROFS_FS_XATTR) += xattr.o
12erofs-$(CONFIG_EROFS_FS_ZIP) += unzip_vle.o unzip_lz4.o unzip_vle_lz4.o
13
14