2009-01-05 11:46:27 +03:00
|
|
|
#
|
|
|
|
# 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
|
2011-07-22 06:01:28 +04:00
|
|
|
squashfs-y += namei.o super.o symlink.o decompressor.o
|
2010-05-31 21:46:29 +04:00
|
|
|
squashfs-$(CONFIG_SQUASHFS_XATTR) += xattr.o xattr_id.o
|
2010-08-05 05:29:59 +04:00
|
|
|
squashfs-$(CONFIG_SQUASHFS_LZO) += lzo_wrapper.o
|
2010-12-09 05:08:31 +03:00
|
|
|
squashfs-$(CONFIG_SQUASHFS_XZ) += xz_wrapper.o
|
2011-07-22 06:01:28 +04:00
|
|
|
squashfs-$(CONFIG_SQUASHFS_ZLIB) += zlib_wrapper.o
|