summaryrefslogtreecommitdiff
path: root/src/backend/Makefile.am
blob: 74c3b201bb023df11fd2fcd2e1f1fb4da2418d43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/backend-lib/

if USE_COVERAGE
  AM_CFLAGS = --coverage -O0
  XLIB = -lgcov
endif

pkgcfgdir = $(prefix)/share/taler/config.d/

pkgcfg_DATA = \
  merchant.conf

EXTRA_DIST = \
  $(pkgcfg_DATA)

bin_PROGRAMS = \
  taler-merchant-httpd

taler_merchant_httpd_SOURCES = \
  taler-merchant-httpd.c taler-merchant-httpd.h \
  taler-merchant-httpd_auditors.c taler-merchant-httpd_auditors.h \
  taler-merchant-httpd_config.c taler-merchant-httpd_config.h \
  taler-merchant-httpd_exchanges.c taler-merchant-httpd_exchanges.h \
  taler-merchant-httpd_mhd.c taler-merchant-httpd_mhd.h \
  taler-merchant-httpd_private-delete-instances-ID.c \
    taler-merchant-httpd_private-delete-instances-ID.h \
  taler-merchant-httpd_private-delete-products-ID.c \
    taler-merchant-httpd_private-delete-products-ID.h \
  taler-merchant-httpd_private-delete-orders-ID.c \
    taler-merchant-httpd_private-delete-orders-ID.h \
  taler-merchant-httpd_private-get-instances.c \
    taler-merchant-httpd_private-get-instances.h \
  taler-merchant-httpd_private-get-instances-ID.c \
    taler-merchant-httpd_private-get-instances-ID.h \
  taler-merchant-httpd_private-get-products.c \
    taler-merchant-httpd_private-get-products.h \
  taler-merchant-httpd_private-get-products-ID.c \
    taler-merchant-httpd_private-get-products-ID.h \
  taler-merchant-httpd_private-get-orders.c \
    taler-merchant-httpd_private-get-orders.h \
  taler-merchant-httpd_private-patch-instances-ID.c \
    taler-merchant-httpd_private-patch-instances-ID.h \
  taler-merchant-httpd_private-patch-products-ID.c \
    taler-merchant-httpd_private-patch-products-ID.h \
  taler-merchant-httpd_private-post-instances.c \
    taler-merchant-httpd_private-post-instances.h \
  taler-merchant-httpd_private-post-products.c \
    taler-merchant-httpd_private-post-products.h \
  taler-merchant-httpd_private-post-products-ID-lock.c \
    taler-merchant-httpd_private-post-products-ID-lock.h \
  taler-merchant-httpd_private-post-orders.c \
    taler-merchant-httpd_private-post-orders.h

DEAD = \
  taler-merchant-httpd_check-payment.c taler-merchant-httpd_check-payment.h \
  taler-merchant-httpd_history.c taler-merchant-httpd_history.h \
  taler-merchant-httpd_order.c taler-merchant-httpd_order.h \
  taler-merchant-httpd_pay.c taler-merchant-httpd_pay.h \
  taler-merchant-httpd_poll-payment.c taler-merchant-httpd_poll-payment.h \
  taler-merchant-httpd_proposal.c taler-merchant-httpd_proposal.h \
  taler-merchant-httpd_refund.c taler-merchant-httpd_refund.h \
  taler-merchant-httpd_refund_increase.c taler-merchant-httpd_refund_increase.h \
  taler-merchant-httpd_refund_lookup.c taler-merchant-httpd_refund_lookup.h \
  taler-merchant-httpd_tip-authorize.c taler-merchant-httpd_tip-authorize.h \
  taler-merchant-httpd_tip-pickup.c taler-merchant-httpd_tip-pickup.h \
  taler-merchant-httpd_tip-pickup_get.c \
  taler-merchant-httpd_tip-query.c taler-merchant-httpd_tip-query.h \
  taler-merchant-httpd_tip-reserve-helper.c taler-merchant-httpd_tip-reserve-helper.h \
  taler-merchant-httpd_track-transaction.c taler-merchant-httpd_track-transaction.h \
  taler-merchant-httpd_track-transfer.c taler-merchant-httpd_track-transfer.h
taler_merchant_httpd_LDADD = \
  $(top_builddir)/src/backenddb/libtalermerchantdb.la \
  -ltalerexchange \
  -ltalermhd \
  -ltalerbank \
  -ltalerjson \
  -ltalerutil \
  -ltalerpq \
  -lmicrohttpd \
  -ljansson \
  -lgnunetcurl \
  -lgnunetjson \
  -lgnunetutil \
  $(XLIB)