X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=Makefile.am;h=0aede5918141e3e181bfcfa733c6f80c9565cbb2;hp=24c07649cf99cc28246a923227d5fdb5ed95653a;hb=1e167170cdc048c6a93db6d994d9da161f8553d9;hpb=cf373e59a7f6ff7d1fd007c1f22defe508aa67d4 diff --git a/Makefile.am b/Makefile.am index 24c07649..0aede591 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,11 +6,12 @@ AM_CFLAGS = -std=gnu99 -fno-strict-aliasing lib_LTLIBRARIES = libwim.la -libwim_la_LDFLAGS = -version-info 6:0:0 $(WINDOWS_LDFLAGS) +libwim_la_LDFLAGS = -version-info 7:0:0 $(WINDOWS_LDFLAGS) libwim_la_SOURCES = \ src/add_image.c \ src/buffer_io.h \ + src/capture_common.c \ src/compress.c \ src/compress.h \ src/decompress.c \ @@ -44,8 +45,9 @@ libwim_la_SOURCES = \ src/sha1.c \ src/sha1.h \ src/split.c \ - src/symlink.c \ + src/reparse.c \ src/timestamp.h \ + src/update_image.c \ src/util.c \ src/util.h \ src/verify.c \ @@ -105,7 +107,14 @@ imagex_SOURCES += programs/imagex-win32.c \ programs/wgetopt.c \ programs/wgetopt.h -libwim_la_SOURCES += src/win32.c +libwim_la_SOURCES += src/win32_common.c \ + src/win32_apply.c \ + src/win32_capture.c \ + src/win32.h \ + src/win32_common.h +else +libwim_la_SOURCES += src/unix_apply.c \ + src/unix_capture.c endif install-exec-hook: @@ -150,6 +159,7 @@ wimlib_manpages = \ doc/@IMAGEX_PROGNAME@-delete.1 \ doc/@IMAGEX_PROGNAME@-dir.1 \ doc/@IMAGEX_PROGNAME@-export.1 \ + doc/@IMAGEX_PROGNAME@-extract.1 \ doc/@IMAGEX_PROGNAME@-info.1 \ doc/@IMAGEX_PROGNAME@-join.1 \ doc/@IMAGEX_PROGNAME@-mount.1 \ @@ -157,6 +167,7 @@ wimlib_manpages = \ doc/@IMAGEX_PROGNAME@-optimize.1 \ doc/@IMAGEX_PROGNAME@-split.1 \ doc/@IMAGEX_PROGNAME@-unmount.1 \ + doc/@IMAGEX_PROGNAME@-update.1 \ doc/mkwinpeimg.1 man1_MANS = $(wimlib_manpages) @@ -168,7 +179,8 @@ check_PROGRAMS = tests/tree-cmp tests_tree_cmp_SOURCES = tests/tree-cmp.c dist_check_SCRIPTS = tests/test-imagex \ - tests/test-imagex-capture_and_apply + tests/test-imagex-capture_and_apply \ + tests/test-imagex-update_and_extract if WITH_FUSE dist_check_SCRIPTS += tests/test-imagex-mount @@ -179,7 +191,7 @@ dist_check_SCRIPTS += tests/test-imagex-ntfs endif if WINDOWS_NATIVE_BUILD -# TODO: The tests need to be re-written for Windows builds. +# Tests are run manually for Windows builds. TESTS = else TESTS = $(dist_check_SCRIPTS)