]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/staging/erofs/Makefile
5cdae21cb5afa6ffc2d1c506080980da3c257378
[linux.git] / drivers / staging / erofs / Makefile
1 # SPDX-License-Identifier: GPL-2.0-only
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) += decompressor.o zmap.o zdata.o
13