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
|
2015-05-28 11:34:06 +02:00
|
|
|
if WALLET_ONLY
|
|
|
|
SUBDIRS = include util
|
|
|
|
else
|
|
|
|
|
2016-01-24 16:44:57 +01:00
|
|
|
SUBDIRS = include util $(PQ_DIR) wire mintdb mint mint-tools
|
2015-04-13 12:57:05 +02:00
|
|
|
if HAVE_LIBCURL
|
|
|
|
SUBDIRS += mint-lib
|
2016-01-24 16:44:57 +01:00
|
|
|
else
|
2015-08-14 14:44:01 +02:00
|
|
|
if HAVE_LIBGNURL
|
|
|
|
SUBDIRS += mint-lib
|
|
|
|
endif
|
2015-04-13 12:57:05 +02:00
|
|
|
endif
|
2015-05-28 11:34:06 +02:00
|
|
|
|
|
|
|
endif
|