2016-05-30 15:08:12 +02:00
|
|
|
# This Makefile.am is in the public domain
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include
|
|
|
|
|
|
|
|
if USE_COVERAGE
|
|
|
|
AM_CFLAGS = --coverage -O0
|
|
|
|
XLIB = -lgcov
|
|
|
|
endif
|
|
|
|
|
|
|
|
bin_PROGRAMS = \
|
|
|
|
taler-exchange-benchmark
|
|
|
|
|
|
|
|
taler_exchange_benchmark_SOURCES = \
|
|
|
|
taler-exchange-benchmark.c
|
|
|
|
taler_exchange_benchmark_LDADD = \
|
|
|
|
$(LIBGCRYPT_LIBS) \
|
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 \
|
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
|