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