exchange/src/lib/Makefile.am

280 lines
7.8 KiB
Makefile
Raw Normal View History

2016-03-01 15:35:04 +01:00
# This Makefile.am is in the public domain
2016-05-03 13:55:40 +02:00
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/bank-lib
2016-03-01 15:35:04 +01:00
if USE_COVERAGE
AM_CFLAGS = --coverage -O0
XLIB = -lgcov
endif
lib_LTLIBRARIES = \
2019-03-26 18:17:09 +01:00
libtalerauditor.la \
libtalerexchange.la \
libtalertesting.la \
libtalerauditortesting.la
2016-03-01 15:35:04 +01:00
libtalerexchange_la_LDFLAGS = \
-version-info 4:0:0 \
2016-03-01 15:35:04 +01:00
-no-undefined
libtalerexchange_la_SOURCES = \
exchange_api_curl_defaults.c exchange_api_curl_defaults.h \
exchange_api_common.c \
2016-03-01 15:35:04 +01:00
exchange_api_handle.c exchange_api_handle.h \
exchange_api_deposit.c \
exchange_api_payback.c \
2016-03-01 15:35:04 +01:00
exchange_api_refresh.c \
exchange_api_refresh_link.c \
2016-05-04 09:42:52 +02:00
exchange_api_refund.c \
2016-03-01 15:35:04 +01:00
exchange_api_reserve.c \
2016-06-09 21:43:26 +02:00
exchange_api_track_transaction.c \
2016-06-09 21:44:42 +02:00
exchange_api_track_transfer.c \
exchange_api_wire.c
2016-03-01 15:35:04 +01:00
libtalerexchange_la_LIBADD = \
libtalerauditor.la \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/curl/libtalercurl.la \
$(top_builddir)/src/util/libtalerutil.la \
-lgnunetcurl \
-lgnunetjson \
-lgnunetutil \
-ljansson \
$(XLIB)
libtalerauditor_la_LDFLAGS = \
-version-info 0:0:0 \
-no-undefined
libtalerauditor_la_SOURCES = \
auditor_api_curl_defaults.c auditor_api_curl_defaults.h \
auditor_api_handle.c auditor_api_handle.h \
auditor_api_deposit_confirmation.c \
auditor_api_exchanges.c
libtalerauditor_la_LIBADD = \
$(top_builddir)/src/curl/libtalercurl.la \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
-lgnunetcurl \
-lgnunetjson \
2016-03-01 15:35:04 +01:00
-lgnunetutil \
-ljansson \
$(XLIB)
if HAVE_LIBCURL
libtalerauditor_la_LIBADD += -lcurl
else
if HAVE_LIBGNURL
libtalerauditor_la_LIBADD += -lgnurl
endif
endif
libtalertesting_la_LDFLAGS = \
-version-info 0:0:0 \
-no-undefined
libtalertesting_la_SOURCES = \
exchange_api_curl_defaults.c \
2018-01-23 10:28:24 +01:00
testing_api_cmd_exec_aggregator.c \
2018-01-21 19:11:27 +01:00
testing_api_cmd_exec_wirewatch.c \
2018-01-23 10:28:24 +01:00
testing_api_cmd_exec_keyup.c \
testing_api_cmd_exec_auditor-sign.c \
testing_api_cmd_withdraw.c \
2018-01-23 10:28:24 +01:00
testing_api_cmd_wire.c \
testing_api_cmd_refund.c \
testing_api_cmd_status.c \
testing_api_cmd_deposit.c \
2018-09-15 22:20:07 +02:00
testing_api_cmd_sleep.c \
2018-01-23 10:28:24 +01:00
testing_api_cmd_refresh.c \
testing_api_cmd_track.c \
testing_api_cmd_bank_check.c \
2020-01-12 19:45:45 +01:00
testing_api_cmd_bank_check_empty.c \
2018-01-23 10:28:24 +01:00
testing_api_cmd_payback.c \
testing_api_cmd_signal.c \
testing_api_cmd_check_keys.c \
2018-06-20 11:20:48 +02:00
testing_api_cmd_batch.c \
testing_api_cmd_serialize_keys.c \
testing_api_helpers.c \
testing_api_loop.c \
testing_api_traits.c \
2018-01-21 16:01:08 +01:00
testing_api_trait_blinding_key.c \
testing_api_trait_coin_priv.c \
testing_api_trait_denom_pub.c \
testing_api_trait_denom_sig.c \
testing_api_trait_exchange_pub.c \
testing_api_trait_exchange_sig.c \
testing_api_trait_json.c \
2018-01-21 18:46:18 +01:00
testing_api_trait_process.c \
testing_api_trait_reserve_pub.c \
2018-01-23 10:28:24 +01:00
testing_api_trait_reserve_priv.c \
testing_api_trait_number.c \
testing_api_trait_fresh_coin.c \
testing_api_trait_string.c \
testing_api_trait_key_peer.c \
testing_api_trait_wtid.c \
2018-06-20 22:16:24 +02:00
testing_api_trait_amount.c \
testing_api_trait_cmd.c \
testing_api_trait_time.c
libtalertesting_la_LIBADD = \
2018-08-06 15:24:32 +02:00
libtalerexchange.la \
$(top_builddir)/src/wire/libtalerwire.la \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
2018-08-06 15:28:56 +02:00
$(top_builddir)/src/bank-lib/libtalerbank.la \
$(top_builddir)/src/bank-lib/libtalerfakebank.la \
-lgnunetcurl \
-lgnunetjson \
-lgnunetutil \
-ljansson \
$(XLIB)
libtalerauditortesting_la_LDFLAGS = \
-version-info 0:0:0 \
-no-undefined
libtalerauditortesting_la_SOURCES = \
testing_auditor_api_helpers.c \
testing_auditor_api_cmd_deposit_confirmation.c \
testing_auditor_api_cmd_exchanges.c \
testing_auditor_api_cmd_exec_auditor.c \
testing_auditor_api_cmd_exec_auditor_dbinit.c \
testing_auditor_api_cmd_exec_wire_auditor.c
libtalerauditortesting_la_LIBADD = \
libtalerauditor.la \
libtalerexchange.la \
libtalertesting.la \
$(top_builddir)/src/wire/libtalerwire.la \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
-lgnunetcurl \
-lgnunetjson \
-lgnunetutil \
-ljansson \
$(XLIB)
2016-03-01 15:35:04 +01:00
if HAVE_LIBCURL
libtalerexchange_la_LIBADD += -lcurl
else
if HAVE_LIBGNURL
libtalerexchange_la_LIBADD += -lgnurl
endif
endif
check_PROGRAMS = \
2019-06-08 21:41:12 +02:00
test_exchange_api_keys_cherry_picking \
test_exchange_api_overlapping_keys_bug \
2019-06-08 21:41:12 +02:00
test_exchange_api \
test_auditor_api_version \
test_auditor_api
2018-03-02 18:30:33 +01:00
if HAVE_TWISTER
check_PROGRAMS += \
test_exchange_api_twisted
test_exchange_api_twisted_SOURCES = \
test_exchange_api_twisted.c
test_exchange_api_twisted_LDADD = \
$(LIBGCRYPT_LIBS) \
libtalertesting.la \
libtalerexchange.la \
2018-08-16 13:14:47 +02:00
$(top_builddir)/src/bank-lib/libtalerfakebank.la \
$(top_builddir)/src/bank-lib/libtalerbank.la \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
2018-03-02 18:30:33 +01:00
-ltalertwistertesting \
-lgnunetjson \
-lgnunetcurl \
-lgnunetutil \
-ljansson
endif
2016-03-01 15:35:04 +01:00
AM_TESTS_ENVIRONMENT=export TALER_PREFIX=$${TALER_PREFIX:-@libdir@};export PATH=$${TALER_PREFIX:-@prefix@}/bin:$$PATH;
2016-03-01 15:35:04 +01:00
TESTS = \
2018-03-02 18:30:33 +01:00
$(check_PROGRAMS)
2016-03-01 15:35:04 +01:00
2019-06-08 21:41:12 +02:00
test_exchange_api_SOURCES = \
test_exchange_api.c
test_exchange_api_LDADD = \
libtalertesting.la \
libtalerexchange.la \
$(LIBGCRYPT_LIBS) \
$(top_builddir)/src/bank-lib/libtalerfakebank.la \
$(top_builddir)/src/bank-lib/libtalerbank.la \
2020-01-12 19:55:56 +01:00
$(top_builddir)/src/bank-lib/libtalerbanktesting.la \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
-lgnunetcurl \
-lgnunetutil \
-ljansson
test_exchange_api_overlapping_keys_bug_SOURCES = \
test_exchange_api_overlapping_keys_bug.c
test_exchange_api_overlapping_keys_bug_LDADD = \
libtalertesting.la \
libtalerexchange.la \
$(LIBGCRYPT_LIBS) \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
$(top_builddir)/src/bank-lib/libtalerbank.la \
-lgnunetcurl \
-lgnunetutil \
-ljansson
2019-06-08 21:41:12 +02:00
test_exchange_api_keys_cherry_picking_SOURCES = \
test_exchange_api_keys_cherry_picking.c
test_exchange_api_keys_cherry_picking_LDADD = \
2018-01-23 10:28:24 +01:00
libtalertesting.la \
libtalerexchange.la \
$(LIBGCRYPT_LIBS) \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
$(top_builddir)/src/bank-lib/libtalerbank.la \
-lgnunetcurl \
-lgnunetutil \
-ljansson
test_auditor_api_SOURCES = \
test_auditor_api.c
test_auditor_api_LDADD = \
libtalerauditortesting.la \
libtalerauditor.la \
libtalertesting.la \
libtalerexchange.la \
$(LIBGCRYPT_LIBS) \
$(top_builddir)/src/bank-lib/libtalerfakebank.la \
$(top_builddir)/src/bank-lib/libtalerbank.la \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
-lgnunetcurl \
-lgnunetutil \
-ljansson
test_auditor_api_version_SOURCES = \
test_auditor_api_version.c
test_auditor_api_version_LDADD = \
libtalerauditor.la \
$(LIBGCRYPT_LIBS) \
$(top_builddir)/src/util/libtalerutil.la \
-lgnunetcurl \
-lgnunetutil \
-ljansson
2016-03-01 15:35:04 +01:00
EXTRA_DIST = \
2016-05-04 10:09:17 +02:00
test_exchange_api_home/.local/share/taler/exchange/offline-keys/master.priv \
2019-12-20 20:34:39 +01:00
test_exchange_api_home/.config/taler/account-2.json \
test_exchange_api_keys_cherry_picking_home/.config/taler/x-taler-bank.json \
test_exchange_api_keys_cherry_picking_home/.local/share/taler/exchange/wirefees/x-taler-bank.fee \
test_exchange_api_keys_cherry_picking_home/.local/share/taler/exchange/offline-keys/master.priv \
2016-05-04 10:09:17 +02:00
test_exchange_api_home/.config/taler/test.json \
test_exchange_api_home/.config/taler/sepa.json \
2017-09-14 20:52:39 +02:00
test_exchange_api.conf \
2019-12-24 23:25:08 +01:00
test_exchange_api_twisted.conf \
2017-09-14 20:52:39 +02:00
test_exchange_api_keys_cherry_picking.conf \
test_exchange_api_keys_cherry_picking_extended.conf \
2019-12-24 23:25:08 +01:00
test_exchange_api_keys_cherry_picking_extended_2.conf \
test_exchange_api_expire_reserve_now.conf \
test_auditor_api.conf \
test_auditor_api_expire_reserve_now.conf