blob: 7bd9b8b856d0bf61f49358625eb26b2912c92fc8 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Phillip Lougherfcef6fb2009-01-05 08:46:27 +00002#
3# Makefile for the linux squashfs routines.
4#
5
6obj-$(CONFIG_SQUASHFS) += squashfs.o
7squashfs-y += block.o cache.o dir.o export.o file.o fragment.o id.o inode.o
Phillip Lougher0d455c12013-11-13 02:04:19 +00008squashfs-y += namei.o super.o symlink.o decompressor.o
9squashfs-$(CONFIG_SQUASHFS_FILE_CACHE) += file_cache.o
10squashfs-$(CONFIG_SQUASHFS_FILE_DIRECT) += file_direct.o page_actor.o
Phillip Lougherd2083832013-11-18 02:31:36 +000011squashfs-$(CONFIG_SQUASHFS_DECOMP_SINGLE) += decompressor_single.o
12squashfs-$(CONFIG_SQUASHFS_DECOMP_MULTI) += decompressor_multi.o
13squashfs-$(CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU) += decompressor_multi_percpu.o
Phillip Lougher637d5c92010-05-31 18:46:29 +010014squashfs-$(CONFIG_SQUASHFS_XATTR) += xattr.o xattr_id.o
Phillip Lougher62421642014-11-27 18:48:44 +000015squashfs-$(CONFIG_SQUASHFS_LZ4) += lz4_wrapper.o
Chan Jeong79cb8ce2010-08-05 02:29:59 +010016squashfs-$(CONFIG_SQUASHFS_LZO) += lzo_wrapper.o
Phillip Lougher7a43ae52010-12-09 02:08:31 +000017squashfs-$(CONFIG_SQUASHFS_XZ) += xz_wrapper.o
Phillip Loughercc6d3492011-07-22 03:01:28 +010018squashfs-$(CONFIG_SQUASHFS_ZLIB) += zlib_wrapper.o
Sean Purcell87bf54b2017-08-09 19:42:36 -070019squashfs-$(CONFIG_SQUASHFS_ZSTD) += zstd_wrapper.o