2015-02-08 00:17:40 +01:00
|
|
|
# This Makefile.am is in the public domain
|
2015-01-08 18:37:20 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include
|
2015-04-13 12:57:05 +02:00
|
|
|
if HAVE_POSTGRESQL
|
|
|
|
PQ_DIR = pq
|
|
|
|
endif
|
2016-03-01 15:35:04 +01:00
|
|
|
if HAVE_LIBCURL
|
|
|
|
BANK_LIB = bank-lib
|
|
|
|
else
|
|
|
|
if HAVE_LIBGNURL
|
|
|
|
BANK_LIB = bank-lib
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2015-05-28 11:34:06 +02:00
|
|
|
if WALLET_ONLY
|
|
|
|
SUBDIRS = include util
|
|
|
|
else
|
|
|
|
|
2016-04-19 23:40:47 +02:00
|
|
|
pkgcfgdir = $(prefix)/share/taler/config.d/
|
|
|
|
pkgcfg_DATA = \
|
|
|
|
taler.conf
|
|
|
|
|
2016-05-04 10:21:35 +02:00
|
|
|
EXTRA_DIST = \
|
|
|
|
taler.conf
|
|
|
|
|
2019-01-11 21:27:34 +01:00
|
|
|
SUBDIRS = include util wire json $(PQ_DIR) $(BANK_LIB) wire-plugins exchangedb exchange exchange-tools auditordb auditor
|
2015-04-13 12:57:05 +02:00
|
|
|
if HAVE_LIBCURL
|
2019-01-11 21:27:34 +01:00
|
|
|
SUBDIRS += lib benchmark
|
2016-01-24 16:44:57 +01:00
|
|
|
else
|
2015-08-14 14:44:01 +02:00
|
|
|
if HAVE_LIBGNURL
|
2019-01-11 21:27:34 +01:00
|
|
|
SUBDIRS += lib benchmark
|
2015-08-14 14:44:01 +02:00
|
|
|
endif
|
2015-04-13 12:57:05 +02:00
|
|
|
endif
|
2015-05-28 11:34:06 +02:00
|
|
|
|
|
|
|
endif
|