summaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: 80fa40dbc60a7c53763ca2a083a64ac220fba01e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include
if HAVE_POSTGRESQL
  PQ_DIR = pq
endif
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

EXTRA_DIST = \
  taler.conf

SUBDIRS = include util wire json $(PQ_DIR) $(BANK_LIB) wire-plugins exchangedb exchange exchange-tools auditordb auditor
if HAVE_LIBCURL
 SUBDIRS += lib benchmark
else
if HAVE_LIBGNURL
 SUBDIRS += lib benchmark
endif
endif

endif