]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/staging/erofs/Makefile
Merge branch 'for-linus-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/ibft
[linux.git] / drivers / staging / erofs / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2
3 EROFS_VERSION = "1.0pre1"
4
5 ccflags-y += -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 $(srctree)/$(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 zmap.o decompressor.o
13