Blame view

fs/squashfs/Makefile 891 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  # SPDX-License-Identifier: GPL-2.0
fcef6fb6c   Phillip Lougher   Squashfs: Makefiles
2
3
4
5
6
7
  #
  # Makefile for the linux squashfs routines.
  #
  
  obj-$(CONFIG_SQUASHFS) += squashfs.o
  squashfs-y += block.o cache.o dir.o export.o file.o fragment.o id.o inode.o
0d455c12c   Phillip Lougher   Squashfs: Directl...
8
9
10
  squashfs-y += namei.o super.o symlink.o decompressor.o
  squashfs-$(CONFIG_SQUASHFS_FILE_CACHE) += file_cache.o
  squashfs-$(CONFIG_SQUASHFS_FILE_DIRECT) += file_direct.o page_actor.o
d208383d6   Phillip Lougher   Squashfs: add mul...
11
12
13
  squashfs-$(CONFIG_SQUASHFS_DECOMP_SINGLE) += decompressor_single.o
  squashfs-$(CONFIG_SQUASHFS_DECOMP_MULTI) += decompressor_multi.o
  squashfs-$(CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU) += decompressor_multi_percpu.o
637d5c9a3   Phillip Lougher   Squashfs: Make XA...
14
  squashfs-$(CONFIG_SQUASHFS_XATTR) += xattr.o xattr_id.o
62421645b   Phillip Lougher   Squashfs: Add LZ4...
15
  squashfs-$(CONFIG_SQUASHFS_LZ4) += lz4_wrapper.o
79cb8ced7   Chan Jeong   Squashfs: Add LZO...
16
  squashfs-$(CONFIG_SQUASHFS_LZO) += lzo_wrapper.o
7a43ae523   Phillip Lougher   Squashfs: Add XZ ...
17
  squashfs-$(CONFIG_SQUASHFS_XZ) += xz_wrapper.o
cc6d34971   Phillip Lougher   Squashfs: Make ZL...
18
  squashfs-$(CONFIG_SQUASHFS_ZLIB) += zlib_wrapper.o
87bf54bb4   Sean Purcell   squashfs: Add zst...
19
  squashfs-$(CONFIG_SQUASHFS_ZSTD) += zstd_wrapper.o