2016-03-01 15:35:04 +01:00
|
|
|
# This Makefile.am is in the public domain
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/pq/ $(POSTGRESQL_CPPFLAGS)
|
|
|
|
|
|
|
|
if USE_COVERAGE
|
|
|
|
AM_CFLAGS = --coverage -O0
|
|
|
|
XLIB = -lgcov
|
|
|
|
endif
|
|
|
|
|
2016-04-10 17:10:20 +02:00
|
|
|
pkgcfgdir = $(prefix)/share/taler/config.d/
|
|
|
|
|
|
|
|
pkgcfg_DATA = \
|
|
|
|
exchangedb.conf \
|
|
|
|
exchangedb-postgres.conf
|
|
|
|
|
2020-01-17 01:23:56 +01:00
|
|
|
sqldir = $(prefix)/share/taler/sql/exchange/
|
|
|
|
|
|
|
|
sql_DATA = \
|
2020-02-09 16:34:40 +01:00
|
|
|
exchange-0000.sql \
|
|
|
|
exchange-0001.sql \
|
2020-11-14 22:27:50 +01:00
|
|
|
exchange-0002.sql \
|
|
|
|
drop0001.sql \
|
|
|
|
drop0002.sql
|
2020-01-17 01:23:56 +01:00
|
|
|
|
2016-04-10 17:10:20 +02:00
|
|
|
EXTRA_DIST = \
|
|
|
|
exchangedb.conf \
|
2016-04-25 00:26:34 +02:00
|
|
|
exchangedb-postgres.conf \
|
|
|
|
plugin_exchangedb_common.c \
|
2021-01-08 18:14:46 +01:00
|
|
|
lrbt_callbacks.c \
|
2020-01-17 03:08:30 +01:00
|
|
|
test-exchange-db-postgres.conf \
|
2020-01-17 01:55:01 +01:00
|
|
|
$(sql_DATA)
|
2016-04-10 17:10:20 +02:00
|
|
|
|
2016-04-07 11:09:30 +02:00
|
|
|
plugindir = $(libdir)/taler
|
2016-03-01 15:35:04 +01:00
|
|
|
|
|
|
|
if HAVE_POSTGRESQL
|
|
|
|
plugin_LTLIBRARIES = \
|
|
|
|
libtaler_plugin_exchangedb_postgres.la
|
|
|
|
endif
|
|
|
|
|
|
|
|
libtaler_plugin_exchangedb_postgres_la_SOURCES = \
|
|
|
|
plugin_exchangedb_postgres.c
|
|
|
|
libtaler_plugin_exchangedb_postgres_la_LIBADD = \
|
|
|
|
$(LTLIBINTL)
|
|
|
|
libtaler_plugin_exchangedb_postgres_la_LDFLAGS = \
|
|
|
|
$(TALER_PLUGIN_LDFLAGS) \
|
|
|
|
$(top_builddir)/src/pq/libtalerpq.la \
|
|
|
|
$(top_builddir)/src/util/libtalerutil.la \
|
|
|
|
-lpq \
|
2020-12-31 22:22:19 +01:00
|
|
|
-lpthread \
|
2016-03-01 15:35:04 +01:00
|
|
|
-lgnunetpq \
|
2020-11-12 22:25:59 +01:00
|
|
|
-lgnunetutil \
|
2020-12-31 22:23:54 +01:00
|
|
|
-ljansson \
|
2020-11-12 22:25:59 +01:00
|
|
|
$(XLIB)
|
2016-03-01 15:35:04 +01:00
|
|
|
|
|
|
|
lib_LTLIBRARIES = \
|
|
|
|
libtalerexchangedb.la
|
|
|
|
|
|
|
|
libtalerexchangedb_la_SOURCES = \
|
2018-04-02 14:24:45 +02:00
|
|
|
exchangedb_accounts.c \
|
2020-01-16 22:40:12 +01:00
|
|
|
exchangedb_plugin.c \
|
|
|
|
exchangedb_transactions.c
|
2016-03-01 15:35:04 +01:00
|
|
|
libtalerexchangedb_la_LIBADD = \
|
2020-03-12 10:11:24 +01:00
|
|
|
$(top_builddir)/src/bank-lib/libtalerbank.la \
|
2016-03-01 15:35:04 +01:00
|
|
|
$(top_builddir)/src/util/libtalerutil.la \
|
2020-11-12 22:25:59 +01:00
|
|
|
-lgnunetutil \
|
|
|
|
$(XLIB)
|
2016-03-01 15:35:04 +01:00
|
|
|
libtalerexchangedb_la_LDFLAGS = \
|
|
|
|
$(POSTGRESQL_LDFLAGS) \
|
2017-10-18 15:21:06 +02:00
|
|
|
-version-info 1:0:0 \
|
2016-03-01 15:35:04 +01:00
|
|
|
-no-undefined
|
|
|
|
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
2019-09-15 11:20:27 +02:00
|
|
|
test-exchangedb-postgres
|
2016-03-01 15:35:04 +01:00
|
|
|
|
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 = \
|
2020-12-16 19:23:29 +01:00
|
|
|
test-exchangedb-postgres
|
2016-03-01 15:35:04 +01:00
|
|
|
|
|
|
|
test_exchangedb_postgres_SOURCES = \
|
|
|
|
test_exchangedb.c
|
|
|
|
test_exchangedb_postgres_LDADD = \
|
|
|
|
libtalerexchangedb.la \
|
2016-04-06 10:22:09 +02:00
|
|
|
$(top_builddir)/src/json/libtalerjson.la \
|
2016-03-01 15:35:04 +01:00
|
|
|
$(top_srcdir)/src/util/libtalerutil.la \
|
|
|
|
$(top_srcdir)/src/pq/libtalerpq.la \
|
2018-04-02 14:24:45 +02:00
|
|
|
-ljansson \
|
2020-11-12 22:25:59 +01:00
|
|
|
-lgnunetutil \
|
|
|
|
$(XLIB)
|
2016-03-01 15:35:04 +01:00
|
|
|
|
|
|
|
EXTRA_test_exchangedb_postgres_DEPENDENCIES = \
|
|
|
|
libtaler_plugin_exchangedb_postgres.la
|