diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:51:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:51:24 +0000 |
commit | f7548d6d28c313cf80e6f3ef89aed16a19815df1 (patch) | |
tree | a3f6f2a3f247293bee59ecd28e8cd8ceb6ca064a /src/lib-oauth2/Makefile.am | |
parent | Initial commit. (diff) | |
download | dovecot-f7548d6d28c313cf80e6f3ef89aed16a19815df1.tar.xz dovecot-f7548d6d28c313cf80e6f3ef89aed16a19815df1.zip |
Adding upstream version 1:2.3.19.1+dfsg1.upstream/1%2.3.19.1+dfsg1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/lib-oauth2/Makefile.am')
-rw-r--r-- | src/lib-oauth2/Makefile.am | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/lib-oauth2/Makefile.am b/src/lib-oauth2/Makefile.am new file mode 100644 index 0000000..458b612 --- /dev/null +++ b/src/lib-oauth2/Makefile.am @@ -0,0 +1,71 @@ +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/lib \ + -I$(top_srcdir)/src/lib-test \ + -I$(top_srcdir)/src/lib-http \ + -I$(top_srcdir)/src/lib-dcrypt \ + -I$(top_srcdir)/src/lib-dict \ + -I$(top_srcdir)/src/lib-settings + +noinst_LTLIBRARIES=liboauth2.la + +pkginc_libdir=$(pkgincludedir) +pkginc_lib_HEADERS = \ + oauth2.h + +noinst_HEADERS = \ + oauth2-private.h + +liboauth2_la_SOURCES = \ + oauth2.c \ + oauth2-request.c \ + oauth2-jwt.c \ + oauth2-key-cache.c + +test_programs = \ + test-oauth2-json \ + test-oauth2-jwt + +noinst_PROGRAMS = $(test_programs) + +test_libs = \ + $(noinst_LTLIBRARIES) \ + ../lib-dcrypt/libdcrypt.la \ + ../lib-http/libhttp.la \ + ../lib-dns/libdns.la \ + ../lib-ssl-iostream/libssl_iostream.la \ + ../lib-master/libmaster.la \ + ../lib-auth/libauth.la \ + ../lib-dict/libdict.la \ + ../lib-settings/libsettings.la \ + ../lib-test/libtest.la \ + ../lib/liblib.la \ + $(MODULE_LIBS) +test_deps = \ + $(noinst_LTLIBRARIES) \ + ../lib-dcrypt/libdcrypt.la \ + ../lib-http/libhttp.la \ + ../lib-dns/libdns.la \ + ../lib-ssl-iostream/libssl_iostream.la \ + ../lib-master/libmaster.la \ + ../lib-auth/libauth.la \ + ../lib-dict/libdict.la \ + ../lib-settings/libsettings.la \ + ../lib-test/libtest.la \ + ../lib/liblib.la + +test_oauth2_json_SOURCES = test-oauth2-json.c +test_oauth2_json_LDADD = $(test_libs) +test_oauth2_json_DEPENDENCIES = $(test_deps) + +test_oauth2_jwt_SOURCES = test-oauth2-jwt.c +test_oauth2_jwt_LDADD = $(test_libs) +if HAVE_WHOLE_ARCHIVE +test_oauth2_jwt_LDFLAGS = -Wl,$(LD_WHOLE_ARCHIVE),../lib-ssl-iostream/.libs/libssl_iostream.a,$(LD_NO_WHOLE_ARCHIVE) +endif +test_oauth2_jwt_DEPENDENCIES = $(test_deps) + +check-local: + for bin in $(test_programs); do \ + if ! $(RUN_TEST) ./$$bin; then exit 1; fi; \ + done + |