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
|
2020-06-02 17:57:39 +02:00
|
|
|
if HAVE_SQLITE
|
|
|
|
SQ_DIR = sq
|
|
|
|
endif
|
2016-03-01 15:35:04 +01:00
|
|
|
|
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
|
|
|
|
|
2020-01-16 14:11:54 +01:00
|
|
|
SUBDIRS = \
|
|
|
|
include \
|
|
|
|
util \
|
|
|
|
json \
|
2022-01-23 01:31:02 +01:00
|
|
|
extensions \
|
2020-01-16 14:11:54 +01:00
|
|
|
curl \
|
|
|
|
$(PQ_DIR) \
|
2020-06-02 17:57:39 +02:00
|
|
|
$(SQ_DIR) \
|
2020-01-16 14:11:54 +01:00
|
|
|
mhd \
|
2022-09-26 19:58:22 +02:00
|
|
|
templating \
|
2020-01-16 14:11:54 +01:00
|
|
|
bank-lib \
|
|
|
|
exchangedb \
|
2022-08-05 15:08:47 +02:00
|
|
|
kyclogic \
|
2020-01-16 14:11:54 +01:00
|
|
|
exchange \
|
|
|
|
auditordb \
|
|
|
|
auditor \
|
|
|
|
lib \
|
2020-12-04 16:55:38 +01:00
|
|
|
exchange-tools \
|
2022-11-04 12:18:16 +01:00
|
|
|
extensions/age_restriction \
|
2020-01-19 15:23:19 +01:00
|
|
|
testing \
|
2020-01-16 14:11:54 +01:00
|
|
|
benchmark
|