exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

Makefile.am (564B)


      1 # This Makefile.am is in the public domain
      2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
      3 if HAVE_POSTGRESQL
      4   PQ_DIR = pq
      5 endif
      6 if HAVE_SQLITE
      7   SQ_DIR = sq
      8 endif
      9 
     10 pkgcfgdir = $(prefix)/share/taler-exchange/config.d/
     11 pkgcfg_DATA = \
     12   taler-exchange.conf
     13 
     14 EXTRA_DIST = \
     15   $(pkgcfg_DATA)
     16 
     17 SUBDIRS = \
     18   include \
     19   util \
     20   json \
     21   extensions \
     22   curl \
     23   $(PQ_DIR) \
     24   $(SQ_DIR) \
     25   mhd \
     26   templating \
     27   bank-lib \
     28   kyclogic \
     29   exchangedb \
     30   exchange \
     31   auditordb \
     32   auditor \
     33   lib \
     34   exchange-tools \
     35   extensions/age_restriction \
     36   testing \
     37   benchmark