2016-03-01 15:35:04 +01:00
|
|
|
# This Makefile.am is in the public domain
|
2020-01-19 15:23:19 +01:00
|
|
|
|
2020-01-12 23:01:01 +01:00
|
|
|
AM_CPPFLAGS = \
|
2020-01-19 15:23:19 +01:00
|
|
|
-I$(top_srcdir)/src/include \
|
|
|
|
$(LIBGCRYPT_CFLAGS) \
|
|
|
|
$(POSTGRESQL_CPPFLAGS)
|
2016-03-01 15:35:04 +01:00
|
|
|
|
|
|
|
if USE_COVERAGE
|
|
|
|
AM_CFLAGS = --coverage -O0
|
|
|
|
XLIB = -lgcov
|
|
|
|
endif
|
|
|
|
|
2020-01-19 15:23:19 +01:00
|
|
|
|
2020-01-12 20:51:42 +01:00
|
|
|
# Libraries
|
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
lib_LTLIBRARIES = \
|
2019-03-26 18:17:09 +01:00
|
|
|
libtalerauditor.la \
|
2020-01-19 15:23:19 +01:00
|
|
|
libtalerexchange.la
|
2016-03-01 15:35:04 +01:00
|
|
|
|
|
|
|
libtalerexchange_la_LDFLAGS = \
|
2017-12-14 13:42:07 +01:00
|
|
|
-version-info 4:0:0 \
|
2016-03-01 15:35:04 +01:00
|
|
|
-no-undefined
|
|
|
|
libtalerexchange_la_SOURCES = \
|
2019-01-11 21:27:34 +01:00
|
|
|
exchange_api_curl_defaults.c exchange_api_curl_defaults.h \
|
2016-10-20 21:11:20 +02:00
|
|
|
exchange_api_common.c \
|
2016-03-01 15:35:04 +01:00
|
|
|
exchange_api_handle.c exchange_api_handle.h \
|
|
|
|
exchange_api_deposit.c \
|
2020-02-29 16:42:10 +01:00
|
|
|
exchange_api_deposits_get.c \
|
|
|
|
exchange_api_link.c \
|
2020-11-25 21:29:04 +01:00
|
|
|
exchange_api_management_auditor_disable.c \
|
2020-11-25 21:33:14 +01:00
|
|
|
exchange_api_management_auditor_enable.c \
|
2020-11-25 21:38:38 +01:00
|
|
|
exchange_api_management_wire_disable.c \
|
2020-11-25 21:40:38 +01:00
|
|
|
exchange_api_management_wire_enable.c \
|
2020-11-25 21:19:13 +01:00
|
|
|
exchange_api_management_revoke_signing_key.c \
|
2020-02-29 16:42:10 +01:00
|
|
|
exchange_api_melt.c \
|
2020-01-18 23:49:37 +01:00
|
|
|
exchange_api_recoup.c \
|
2020-02-29 16:42:10 +01:00
|
|
|
exchange_api_refresh_common.c exchange_api_refresh_common.h \
|
|
|
|
exchange_api_refreshes_reveal.c \
|
2016-05-04 09:42:52 +02:00
|
|
|
exchange_api_refund.c \
|
2020-02-29 16:42:10 +01:00
|
|
|
exchange_api_reserves_get.c \
|
|
|
|
exchange_api_transfers_get.c \
|
|
|
|
exchange_api_withdraw.c \
|
2020-04-12 19:22:45 +02:00
|
|
|
exchange_api_withdraw2.c \
|
2019-10-26 20:05:19 +02:00
|
|
|
exchange_api_wire.c
|
2016-03-01 15:35:04 +01:00
|
|
|
libtalerexchange_la_LIBADD = \
|
2019-01-11 21:27:34 +01:00
|
|
|
libtalerauditor.la \
|
|
|
|
$(top_builddir)/src/json/libtalerjson.la \
|
2019-10-26 20:05:19 +02:00
|
|
|
$(top_builddir)/src/curl/libtalercurl.la \
|
2019-01-11 21:27:34 +01:00
|
|
|
$(top_builddir)/src/util/libtalerutil.la \
|
|
|
|
-lgnunetcurl \
|
|
|
|
-lgnunetjson \
|
|
|
|
-lgnunetutil \
|
|
|
|
-ljansson \
|
2020-01-16 14:11:54 +01:00
|
|
|
$(LIBGNURLCURL_LIBS) \
|
2019-01-11 21:27:34 +01:00
|
|
|
$(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 \
|
2019-10-26 20:05:19 +02:00
|
|
|
auditor_api_exchanges.c
|
2019-01-11 21:27:34 +01:00
|
|
|
libtalerauditor_la_LIBADD = \
|
2019-10-26 20:05:19 +02:00
|
|
|
$(top_builddir)/src/curl/libtalercurl.la \
|
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 \
|
2020-01-16 14:11:54 +01:00
|
|
|
$(LIBGNURLCURL_LIBS) \
|
2016-03-01 15:35:04 +01:00
|
|
|
$(XLIB)
|