diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-01 13:35:33 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-02 12:40:06 +0200 |
commit | 4da96898487f0f4aca1dfc7afc355aa90065308a (patch) | |
tree | b4d08939634970e63eab4c7f8588dbdfe7a10409 /unpack/Makemodule.am | |
parent | ff0737a13f4ea5c97ff8f4973383080163a9a67f (diff) |
Add unsquashfs stub
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack/Makemodule.am')
-rw-r--r-- | unpack/Makemodule.am | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/unpack/Makemodule.am b/unpack/Makemodule.am new file mode 100644 index 0000000..190803e --- /dev/null +++ b/unpack/Makemodule.am @@ -0,0 +1,12 @@ +unsquashfs_SOURCES = unpack/unsquashfs.c +unsquashfs_LDADD = libsquashfs.a libfstree.a libcompress.a libutil.a + +if WITH_LZMA +unsquashfs_LDADD += $(XZ_LIBS) +endif + +if WITH_ZLIB +unsquashfs_LDADD += $(ZLIB_LIBS) +endif + +bin_PROGRAMS += unsquashfs |