summaryrefslogtreecommitdiff
path: root/src/backend/Makefile.am
blob: 9744a2dd434e22a8578c3731fe69f75db13aea9e (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
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include

bin_PROGRAMS = \
  taler-merchant-httpd

taler_merchant_httpd_SOURCES = \
  taler-merchant-httpd.c \
  merchant.c merchant.h \
  merchant_db.c merchant_db.h \
  taler-mint-httpd_keystate.c taler-mint-httpd_keystate.h \
  taler-mint-httpd_db.c taler-mint-httpd_db.h \
  taler-mint-httpd_parsing.c taler-mint-httpd_parsing.h \
  taler-mint-httpd_responses.c taler-mint-httpd_responses.h \
  taler-mint-httpd_mhd.c taler-mint-httpd_mhd.h \
  taler-mint-httpd_admin.c taler-mint-httpd_admin.h \
  taler-mint-httpd_deposit.c taler-mint-httpd_deposit.h \
  taler-mint-httpd_withdraw.c taler-mint-httpd_withdraw.h \
  taler-mint-httpd_refresh.c taler-mint-httpd_refresh.h

taler_merchant_httpd_LDADD = \
  $(LIBGCRYPT_LIBS) \
  /home/marcello/trans_mint/src/util/libtalerutil.la \
  /home/marcello/trans_mint/src/mintdb/libtalermintdb.la \
  -lmicrohttpd \
  -ljansson \
  -lgnunetutil \
  -ltalermint \
  -ltalerpq \
  -lgnunetpostgres \
  -lpq \
  -lpthread

# NOTE: the lines
# /home/demo/mint/src/util/libtalerutil.la \
# /home/demo/mint/src/mintdb/libtalermintdb.la \
# don't seem to be replaceable with -ltalerutil and -ltalermintdb
# -ltalerutil \
# -ltalermintdb \
# so that this Makefile.am depends on where the mint source tree
# is in the user's computer.