blob: 246a6f329d8957df4b3bf48129b3f0e415be2611 [file] [log] [blame]
Phillip Lougherfcef6fb2009-01-05 08:46:27 +00001#
2# Makefile for the linux squashfs routines.
3#
4
5obj-$(CONFIG_SQUASHFS) += squashfs.o
6squashfs-y += block.o cache.o dir.o export.o file.o fragment.o id.o inode.o
Phillip Lougher0d455c12013-11-13 02:04:19 +00007squashfs-y += namei.o super.o symlink.o decompressor.o
Alistair Strachan603dd202018-12-19 15:37:41 -08008squashfs-$(CONFIG_SQUASHFS_FILE_CACHE) += file_cache.o
9squashfs-$(CONFIG_SQUASHFS_FILE_DIRECT) += file_direct.o page_actor.o
Phillip Lougherd2083832013-11-18 02:31:36 +000010squashfs-$(CONFIG_SQUASHFS_DECOMP_SINGLE) += decompressor_single.o
11squashfs-$(CONFIG_SQUASHFS_DECOMP_MULTI) += decompressor_multi.o
12squashfs-$(CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU) += decompressor_multi_percpu.o
Phillip Lougher637d5c92010-05-31 18:46:29 +010013squashfs-$(CONFIG_SQUASHFS_XATTR) += xattr.o xattr_id.o
Phillip Lougher62421642014-11-27 18:48:44 +000014squashfs-$(CONFIG_SQUASHFS_LZ4) += lz4_wrapper.o
Chan Jeong79cb8ce2010-08-05 02:29:59 +010015squashfs-$(CONFIG_SQUASHFS_LZO) += lzo_wrapper.o
Phillip Lougher7a43ae52010-12-09 02:08:31 +000016squashfs-$(CONFIG_SQUASHFS_XZ) += xz_wrapper.o
Phillip Loughercc6d3492011-07-22 03:01:28 +010017squashfs-$(CONFIG_SQUASHFS_ZLIB) += zlib_wrapper.o