exchange/src/exchange-lib/Makefile.am

121 lines
3.1 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 = \
libtalerexchange.la \
libtalertesting.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_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 \
2016-06-09 21:43:10 +02:00
exchange_api_wire.c
2016-03-01 15:35:04 +01:00
libtalerexchange_la_LIBADD = \
$(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)
libtalertesting_la_LDFLAGS = \
-version-info 0:0:0 \
-no-undefined
libtalertesting_la_SOURCES = \
testing_api_loop.c \
testing_api_traits.c \
testing_api_cmd_fakebank_transfer.c \
testing_api_trait_reserve_priv.c \
testing_api_trait_coin_priv.c
libtalertesting_la_LIBADD = \
$(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 = \
test_exchange_api \
test_exchange_api_keys_cherry_picking \
test_exchange_api_new
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 = \
test_exchange_api \
test_exchange_api_keys_cherry_picking
2016-03-01 15:35:04 +01:00
test_exchange_api_SOURCES = \
test_exchange_api.c
test_exchange_api_LDADD = \
libtalerexchange.la \
$(LIBGCRYPT_LIBS) \
$(top_builddir)/src/bank-lib/libtalerfakebank.la \
$(top_builddir)/src/bank-lib/libtalerbank.la \
$(top_builddir)/src/json/libtalerjson.la \
2016-03-01 15:35:04 +01:00
$(top_builddir)/src/util/libtalerutil.la \
-lgnunetcurl \
2016-03-01 15:35:04 +01:00
-lgnunetutil \
-ljansson
test_exchange_api_new_SOURCES = \
test_exchange_api_new.c
test_exchange_api_new_LDADD = \
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_exchange_api_keys_cherry_picking_SOURCES = \
test_exchange_api_keys_cherry_picking.c
test_exchange_api_keys_cherry_picking_LDADD = \
libtalerexchange.la \
$(LIBGCRYPT_LIBS) \
$(top_builddir)/src/json/libtalerjson.la \
$(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 \
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 \
test_exchange_api_keys_cherry_picking.conf \
test_exchange_api_keys_cherry_picking_extended.conf