blob: e10ecf8d82d42185e30188b1d72c6f303d02ab95 (
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
35
36
37
|
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include
if HAVE_POSTGRESQL
PQ_DIR = pq
endif
if HAVE_SQLITE
SQ_DIR = sq
endif
pkgcfgdir = $(prefix)/share/taler/config.d/
pkgcfg_DATA = \
taler.conf
EXTRA_DIST = \
taler.conf
SUBDIRS = \
include \
util \
json \
extensions \
curl \
$(PQ_DIR) \
$(SQ_DIR) \
mhd \
templating \
bank-lib \
exchangedb \
kyclogic \
exchange \
auditordb \
auditor \
lib \
exchange-tools \
extensions/age_restriction \
testing \
benchmark
|