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
|
|
|
|
|
|
|
|
libtalerexchange_la_LDFLAGS = \
|
|
|
|
-version-info 0:0:0 \
|
|
|
|
-no-undefined
|
|
|
|
|
|
|
|
libtalerexchange_la_SOURCES = \
|
|
|
|
exchange_api_common.c exchange_api_common.h \
|
|
|
|
exchange_api_handle.c exchange_api_handle.h \
|
|
|
|
exchange_api_admin.c \
|
|
|
|
exchange_api_deposit.c \
|
|
|
|
exchange_api_deposit_wtid.c \
|
|
|
|
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 \
|
|
|
|
exchange_api_wire.c \
|
|
|
|
exchange_api_wire_deposits.c
|
|
|
|
|
|
|
|
libtalerexchange_la_LIBADD = \
|
2016-03-19 15:23:11 +01:00
|
|
|
$(top_builddir)/src/json/libtalerjson.la \
|
|
|
|
$(top_builddir)/src/util/libtalerutil.la \
|
2016-04-17 17:45:15 +02:00
|
|
|
-lgnunetcurl \
|
2016-03-19 15:23:11 +01:00
|
|
|
-lgnunetjson \
|
2016-03-01 15:35:04 +01:00
|
|
|
-lgnunetutil \
|
|
|
|
-ljansson \
|
|
|
|
$(XLIB)
|
|
|
|
|
|
|
|
if HAVE_LIBCURL
|
|
|
|
libtalerexchange_la_LIBADD += -lcurl
|
|
|
|
else
|
|
|
|
if HAVE_LIBGNURL
|
|
|
|
libtalerexchange_la_LIBADD += -lgnurl
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
|
|
|
test_exchange_api
|
|
|
|
|
2016-04-01 20:35:22 +02: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 = \
|
|
|
|
$(check_PROGRAMS)
|
|
|
|
|
|
|
|
test_exchange_api_SOURCES = \
|
|
|
|
test_exchange_api.c
|
|
|
|
test_exchange_api_LDADD = \
|
|
|
|
libtalerexchange.la \
|
|
|
|
$(LIBGCRYPT_LIBS) \
|
2016-05-03 13:55:40 +02:00
|
|
|
$(top_builddir)/src/bank-lib/libfakebank.la \
|
2016-03-19 15:23:11 +01:00
|
|
|
$(top_builddir)/src/json/libtalerjson.la \
|
2016-03-01 15:35:04 +01:00
|
|
|
$(top_builddir)/src/util/libtalerutil.la \
|
2016-04-17 17:45:15 +02:00
|
|
|
-lgnunetcurl \
|
2016-03-01 15:35:04 +01:00
|
|
|
-lgnunetutil \
|
|
|
|
-ljansson
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
2016-04-10 17:10:20 +02:00
|
|
|
test_taler_exchange_api_home/.local/share/taler/exchange/offline-keys/master.priv \
|
2016-04-11 02:37:56 +02:00
|
|
|
test_taler_exchange_api_home/.config/taler/test.json \
|
2016-04-10 17:10:20 +02:00
|
|
|
test_taler_exchange_api_home/.config/taler/sepa.json \
|
|
|
|
test_taler_exchange_api.conf
|