exchange

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

Makefile.am (714B)


      1 # This Makefile.am is in the public domain
      2 
      3 AM_CPPFLAGS = \
      4   -I$(top_srcdir)/src/include \
      5   $(LIBGCRYPT_CFLAGS) \
      6   $(POSTGRESQL_CPPFLAGS)
      7 
      8 if USE_COVERAGE
      9   AM_CFLAGS = --coverage -O0
     10   XLIB = -lgcov
     11 endif
     12 
     13 # Age restriction as extension library
     14 
     15 plugindir = $(libdir)/taler-exchange
     16 
     17 plugin_LTLIBRARIES = \
     18   libtaler_extension_age_restriction.la
     19 
     20 libtaler_extension_age_restriction_la_LDFLAGS = \
     21   $(TALER_PLUGIN_LDFLAGS) \
     22   -no-undefined
     23 
     24 libtaler_extension_age_restriction_la_SOURCES = \
     25   age_restriction.c
     26 libtaler_extension_age_restriction_la_LIBADD = \
     27   $(top_builddir)/src/json/libtalerjson.la \
     28   $(top_builddir)/src/util/libtalerutil.la \
     29   -lgnunetjson \
     30   -lgnunetutil \
     31   -ljansson \
     32   $(XLIB)