X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=Makefile.am;h=18c7f3165dcfe240900f8f496032dab7d0109c97;hb=db6646022cb5b94d566bdb1c3f5de6b10e6939d0;hp=2e1298b6bf8f3f9e94fef248cc4afff118d69be3;hpb=5e2f335c1097250e8fe96617bcc0248fb8c64e01;p=wimlib diff --git a/Makefile.am b/Makefile.am index 2e1298b6..18c7f316 100644 --- a/Makefile.am +++ b/Makefile.am @@ -29,6 +29,7 @@ libwim_la_SOURCES = \ src/decompress_common.c \ src/delete_image.c \ src/dentry.c \ + src/divsufsort.c \ src/encoding.c \ src/export_image.c \ src/extract.c \ @@ -40,11 +41,17 @@ libwim_la_SOURCES = \ src/iterate_dir.c \ src/join.c \ src/lookup_table.c \ + src/lz_binary_trees.c \ + src/lz_hash_chains.c \ + src/lz_lcp_interval_tree.c \ + src/lz_linked_suffix_array.c \ + src/lz_mf.c \ + src/lz_null.c \ + src/lz_repsearch.c \ + src/lz_suffix_array_utils.c \ src/lzms-common.c \ src/lzms-compress.c \ src/lzms-decompress.c \ - src/lz_bt.c \ - src/lz_hash.c \ src/lzx-common.c \ src/lzx-compress.c \ src/lzx-decompress.c \ @@ -84,6 +91,7 @@ libwim_la_SOURCES = \ include/wimlib/decompressor_ops.h \ include/wimlib/decompress_common.h \ include/wimlib/dentry.h \ + include/wimlib/divsufsort.h \ include/wimlib/encoding.h \ include/wimlib/endianness.h \ include/wimlib/error.h \ @@ -95,11 +103,15 @@ libwim_la_SOURCES = \ include/wimlib/integrity.h \ include/wimlib/list.h \ include/wimlib/lookup_table.h \ - include/wimlib/lz.h \ - include/wimlib/lz_bt.h \ - include/wimlib/lz_hash.h \ + include/wimlib/lz_extend.h \ + include/wimlib/lz_hash3.h \ + include/wimlib/lz_mf.h \ + include/wimlib/lz_mf_ops.h \ + include/wimlib/lz_repsearch.h \ + include/wimlib/lz_suffix_array_utils.h \ include/wimlib/lzms.h \ include/wimlib/lzx.h \ + include/wimlib/lzx_constants.h \ include/wimlib/metadata.h \ include/wimlib/pathlist.h \ include/wimlib/paths.h \ @@ -202,7 +214,8 @@ imagex_cmds = append \ optimize\ split \ unmount \ - update + update \ + verify install-exec-hook: if [ "@IMAGEX_PROGNAME@" != imagex ]; then \ @@ -276,6 +289,7 @@ wimlib_manpages = \ doc/man1/@IMAGEX_PROGNAME@-split.1 \ doc/man1/@IMAGEX_PROGNAME@-unmount.1 \ doc/man1/@IMAGEX_PROGNAME@-update.1 \ + doc/man1/@IMAGEX_PROGNAME@-verify.1 \ doc/man1/mkwinpeimg.1 man1_MANS = $(wimlib_manpages)