diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-07 11:09:34 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-07 11:24:20 +0200 |
commit | d6149732b67fbedc7ac2d2ba984c07ab466392f1 (patch) | |
tree | 80e0fd22e6110fb1c5b977ac687479d9f7a9a21a /difftool/Makemodule.am | |
parent | 73b4ec8392541a27815bccbaeccbdf1cdd5e19dd (diff) |
Extend filesystem diff utility to work on squashfs images
Since it already works on an fstree_t instance (constructed from the
input paths), and we now have a handy sqfs_reader_t, it is quite simple
to extend.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'difftool/Makemodule.am')
-rw-r--r-- | difftool/Makemodule.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/difftool/Makemodule.am b/difftool/Makemodule.am index 4a03495..62c9197 100644 --- a/difftool/Makemodule.am +++ b/difftool/Makemodule.am @@ -3,4 +3,11 @@ fscompare_SOURCES += difftool/compare_dir.c difftool/node_compare.c fscompare_SOURCES += difftool/compare_file.c fscompare_LDADD = libfstree.a libutil.a +sqfsdiff_SOURCES = difftool/sqfsdiff.c difftool/difftool.h difftool/util.c +sqfsdiff_SOURCES += difftool/compare_dir.c difftool/node_compare.c +sqfsdiff_SOURCES += difftool/compare_files_sqfs.c +sqfsdiff_LDADD = libsquashfs.a libfstree.a libcompress.a libutil.a +sqfsdiff_LDADD += $(XZ_LIBS) $(ZLIB_LIBS) $(LZO_LIBS) $(LZ4_LIBS) $(ZSTD_LIBS) + noinst_PROGRAMS += fscompare +bin_PROGRAMS += sqfsdiff |