X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=Makefile.am;h=f0a00573c166e15cea38c94c1fa14b92fe5eb939;hb=de988664c349cc93d85e4ea559f1e9c2aa9d9fd1;hp=a34bc9a2fac22482555e34523b8e9097caaf6824;hpb=ab45bbee86cf7b0e4a66931f83da1add77c112b5;p=wimlib diff --git a/Makefile.am b/Makefile.am index a34bc9a2..f0a00573 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,6 +7,8 @@ AM_CFLAGS = -std=gnu99 -D_LARGEFILE_SOURCE \ lib_LTLIBRARIES = libwim.la +libwim_la_LDFLAGS = -version-info 1:0:0 + libwim_la_SOURCES = \ src/comp.c \ src/comp.h \ @@ -16,10 +18,12 @@ libwim_la_SOURCES = \ src/dentry.h \ src/endianness.h \ src/extract.c \ + src/hardlink.c \ src/header.c \ src/integrity.c \ src/io.h \ src/join.c \ + src/list.h \ src/lookup_table.c \ src/lookup_table.h \ src/lz.c \ @@ -29,12 +33,18 @@ libwim_la_SOURCES = \ src/lzx.h \ src/modify.c \ src/mount.c \ + src/ntfs-apply.c \ + src/ntfs-capture.c \ src/resource.c \ + src/rbtree.c \ + src/rbtree.h \ + src/rbtree_augmented.h \ src/security.c \ src/security.h \ src/sha1.c \ src/sha1.h \ src/split.c \ + src/symlink.c \ src/timestamp.h \ src/util.c \ src/util.h \ @@ -63,7 +73,8 @@ libwim_la_LIBADD = \ $(LIBNTFS_3G_LDADD) \ $(LTLIBICONV) \ $(LIBCRYPTO_LDADD) \ - $(SSSE3_SHA1_OBJ) + $(SSSE3_SHA1_OBJ) \ + $(PTHREAD_LDADD) libwim_la_CFLAGS = \ $(AM_CFLAGS) \ @@ -82,13 +93,17 @@ dist_bin_SCRIPTS = programs/mkwinpeimg include_HEADERS = src/wimlib.h -EXTRA_DIST = \ - COPYING.LIB \ - build-aux/strip_fPIC.sh \ - debian \ - programs/install.cmd \ - tests/dir \ - tests/dir2 +EXTRA_DIST = \ + build-aux/strip_fPIC.sh \ + archlinux \ + debian \ + rpm \ + programs/install.cmd \ + tests/common_tests.sh \ + tests/security_descriptor_1.base64 \ + tests/security_descriptor_1.bin \ + tests/security_descriptor_2.base64 \ + tests/security_descriptor_2.bin pkgconfigdir = @pkgconfigdir@ pkgconfig_DATA = wimlib.pc @@ -113,6 +128,19 @@ man1_MANS = \ $(man1_MANS): config.status -dist_check_SCRIPTS = tests/test-imagex +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 + +if WITH_FUSE +dist_check_SCRIPTS += tests/test-imagex-mount +endif + +if WITH_NTFS_3G +dist_check_SCRIPTS += tests/test-imagex-ntfs +endif + TESTS = $(dist_check_SCRIPTS)