exchange/src/Makefile.am

35 lines
626 B
Makefile
Raw Normal View History

# This Makefile.am is in the public domain
2015-01-08 18:37:20 +01:00
AM_CPPFLAGS = -I$(top_srcdir)/src/include
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
if WALLET_ONLY
SUBDIRS = include util
else
pkgcfgdir = $(prefix)/share/taler/config.d/
pkgcfg_DATA = \
taler.conf
2016-05-04 10:21:35 +02:00
EXTRA_DIST = \
taler.conf
2018-10-27 18:58:44 +02:00
SUBDIRS = include util wire json $(PQ_DIR) $(BANK_LIB) wire-plugins exchangedb exchange exchange-tools auditordb auditor auditor-lib
if HAVE_LIBCURL
SUBDIRS += exchange-lib benchmark
2016-01-24 16:44:57 +01:00
else
if HAVE_LIBGNURL
SUBDIRS += exchange-lib benchmark
endif
endif
endif