merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

Makefile.am (1510B)


      1 # This Makefile.am is in the public domain
      2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
      3 
      4 if USE_COVERAGE
      5   AM_CFLAGS = --coverage -O0
      6   XLIB = -lgcov
      7 endif
      8 
      9 bin_PROGRAMS = \
     10   taler-merchant-dbinit \
     11   taler-merchant-passwd \
     12   taler-merchant-benchmark
     13 
     14 bin_SCRIPTS = \
     15   taler-merchant-rproxy-setup
     16 
     17 EXTRA_DIST = \
     18   benchmark-common.conf \
     19   benchmark-cs.conf \
     20   benchmark-rsa.conf \
     21   coins-cs.conf \
     22   coins-rsa.conf \
     23   $(bin_SCRIPTS)
     24 
     25 taler_merchant_benchmark_SOURCES = \
     26   taler-merchant-benchmark.c
     27 taler_merchant_benchmark_LDADD = \
     28   $(top_srcdir)/src/backenddb/libtalermerchantdb.la \
     29   $(top_srcdir)/src/lib/libtalermerchant.la \
     30   $(top_srcdir)/src/testing/libtalermerchanttesting.la \
     31   $(top_srcdir)/src/util/libtalermerchantutil.la \
     32   $(LIBGCRYPT_LIBS) \
     33   -ltalertesting \
     34   -ltalerfakebank \
     35   -ltalerbank \
     36   -ltalerexchange \
     37   -ltalerjson \
     38   -ltalerutil \
     39   -lgnunetjson \
     40   -lgnunetcurl \
     41   -lgnunetutil \
     42   -ljansson \
     43   $(XLIB)
     44 
     45 taler_merchant_dbinit_SOURCES = \
     46   taler-merchant-dbinit.c
     47 taler_merchant_dbinit_LDADD = \
     48   $(LIBGCRYPT_LIBS) \
     49   $(top_builddir)/src/backenddb/libtalermerchantdb.la \
     50   $(top_srcdir)/src/util/libtalermerchantutil.la \
     51   -ltalerutil \
     52   -ltalerpq \
     53   -lgnunetutil \
     54   $(XLIB)
     55 
     56 taler_merchant_passwd_SOURCES = \
     57   taler-merchant-passwd.c
     58 taler_merchant_passwd_LDADD = \
     59   $(LIBGCRYPT_LIBS) \
     60   $(top_builddir)/src/backenddb/libtalermerchantdb.la \
     61   $(top_srcdir)/src/util/libtalermerchantutil.la \
     62   -ltalerutil \
     63   -ltalerpq \
     64   -lgnunetutil \
     65   $(XLIB)