diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:36:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 17:36:47 +0000 |
commit | 0441d265f2bb9da249c7abf333f0f771fadb4ab5 (patch) | |
tree | 3f3789daa2f6db22da6e55e92bee0062a7d613fe /src/lib-fs/Makefile.am | |
parent | Initial commit. (diff) | |
download | dovecot-0441d265f2bb9da249c7abf333f0f771fadb4ab5.tar.xz dovecot-0441d265f2bb9da249c7abf333f0f771fadb4ab5.zip |
Adding upstream version 1:2.3.21+dfsg1.upstream/1%2.3.21+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/lib-fs/Makefile.am')
-rw-r--r-- | src/lib-fs/Makefile.am | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/lib-fs/Makefile.am b/src/lib-fs/Makefile.am new file mode 100644 index 0000000..e5ae056 --- /dev/null +++ b/src/lib-fs/Makefile.am @@ -0,0 +1,70 @@ +noinst_LTLIBRARIES = libfs.la + +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/lib \ + -I$(top_srcdir)/src/lib-test \ + -I$(top_srcdir)/src/lib-dict \ + -I$(top_srcdir)/src/lib-ssl-iostream \ + -DMODULE_DIR=\""$(moduledir)"\" + +libfs_la_SOURCES = \ + fs-api.c \ + fs-dict.c \ + fs-metawrap.c \ + fs-randomfail.c \ + fs-posix.c \ + fs-test.c \ + fs-test-async.c \ + fs-sis.c \ + fs-sis-common.c \ + fs-sis-queue.c \ + fs-wrapper.c \ + istream-fs-file.c \ + istream-fs-stats.c \ + istream-metawrap.c \ + ostream-metawrap.c \ + ostream-cmp.c + +headers = \ + fs-api.h \ + fs-api-private.h \ + fs-sis-common.h \ + fs-wrapper.h \ + fs-test.h \ + istream-fs-file.h \ + istream-fs-stats.h \ + istream-metawrap.h \ + ostream-metawrap.h \ + ostream-cmp.h + +pkginc_libdir=$(pkgincludedir) +pkginc_lib_HEADERS = $(headers) + +noinst_PROGRAMS = $(test_programs) + +test_programs = \ + test-fs-metawrap \ + test-fs-posix + +test_deps = \ + $(noinst_LTLIBRARIES) \ + ../lib-dict/libdict.la \ + ../lib-test/libtest.la \ + ../lib/liblib.la + +test_libs = \ + $(test_deps) \ + $(MODULE_LIBS) + +test_fs_metawrap_SOURCES = test-fs-metawrap.c +test_fs_metawrap_LDADD = $(test_libs) +test_fs_metawrap_DEPENDENCIES = $(test_deps) + +test_fs_posix_SOURCES = test-fs-posix.c +test_fs_posix_LDADD = $(test_libs) +test_fs_posix_DEPENDENCIES = $(test_deps) + +check-local: + for bin in $(test_programs); do \ + if ! $(RUN_TEST) ./$$bin; then exit 1; fi; \ + done |