2016-05-30 15:08:12 +02:00
|
|
|
# This Makefile.am is in the public domain
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include
|
|
|
|
|
2018-07-27 12:12:13 +02:00
|
|
|
clean-blobs:
|
|
|
|
rm -fr exchange_benchmark_home/.local/share/taler/auditor*/ exchange_benchmark_home/.local/share/taler/exchange/wirefees/ exchange_benchmark_home/.local/share/taler/exchange/live-keys/ auditor.in
|
|
|
|
|
|
|
|
|
2016-05-30 15:08:12 +02:00
|
|
|
if USE_COVERAGE
|
|
|
|
AM_CFLAGS = --coverage -O0
|
|
|
|
XLIB = -lgcov
|
|
|
|
endif
|
|
|
|
|
|
|
|
bin_PROGRAMS = \
|
|
|
|
taler-exchange-benchmark
|
|
|
|
|
|
|
|
taler_exchange_benchmark_SOURCES = \
|
2018-07-25 13:26:47 +02:00
|
|
|
taler-exchange-benchmark.c
|
2016-05-30 15:08:12 +02:00
|
|
|
taler_exchange_benchmark_LDADD = \
|
|
|
|
$(LIBGCRYPT_LIBS) \
|
2018-08-06 15:18:29 +02:00
|
|
|
$(top_builddir)/src/wire/libtalerwire.la \
|
2016-05-31 11:05:49 +02:00
|
|
|
$(top_builddir)/src/json/libtalerjson.la \
|
|
|
|
$(top_builddir)/src/util/libtalerutil.la \
|
|
|
|
$(top_builddir)/src/exchange-lib/libtalerexchange.la \
|
2018-07-24 18:17:34 +02:00
|
|
|
$(top_builddir)/src/exchange-lib/libtalertesting.la \
|
2017-12-10 19:00:19 +01:00
|
|
|
$(top_builddir)/src/bank-lib/libtalerfakebank.la \
|
|
|
|
$(top_builddir)/src/bank-lib/libtalerbank.la \
|
2018-07-24 18:17:34 +02:00
|
|
|
$(top_builddir)/src/bank-lib/libtalerbanktesting.la \
|
2016-05-30 15:08:12 +02:00
|
|
|
-lgnunetjson \
|
|
|
|
-lgnunetcurl \
|
|
|
|
-lgnunetutil \
|
|
|
|
-ljansson
|
2016-06-15 15:09:57 +02:00
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
taler-exchange-benchmark.conf \
|
2016-06-20 17:45:02 +02:00
|
|
|
bank_details.json \
|
|
|
|
merchant_details.json \
|
2016-06-15 16:45:29 +02:00
|
|
|
test_benchmark_home/.local/share/taler/exchange/offline-keys/master.priv \
|
|
|
|
test_benchmark_home/.config/taler/test.json \
|
|
|
|
test_benchmark_home/.config/taler/sepa.json
|