exchange/src/Makefile.am

20 lines
337 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
if WALLET_ONLY
SUBDIRS = include util
else
2016-01-25 11:08:19 +01:00
SUBDIRS = include util $(PQ_DIR) bank-lib wire mintdb mint mint-tools
if HAVE_LIBCURL
SUBDIRS += mint-lib
2016-01-24 16:44:57 +01:00
else
if HAVE_LIBGNURL
SUBDIRS += mint-lib
endif
endif
endif