blob: 6a0eab087920d252df842f8844f5b35ea43a8941 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
rdsquashfs_SOURCES = unpack/rdsquashfs.c unpack/tree_node_from_inode.c
rdsquashfs_SOURCES += unpack/rdsquashfs.h unpack/read_fstree.c
rdsquashfs_SOURCES += unpack/list_files.c unpack/extract_file.c
rdsquashfs_SOURCES += unpack/restore_fstree.c
rdsquashfs_LDADD = libsquashfs.a libfstree.a libcompress.a libutil.a
if WITH_XZ
rdsquashfs_LDADD += $(XZ_LIBS)
endif
if WITH_GZIP
rdsquashfs_LDADD += $(ZLIB_LIBS)
endif
bin_PROGRAMS += rdsquashfs
|