2015-02-08 00:17:40 +01:00
|
|
|
# This Makefile.am is in the public domain
|
2015-03-28 11:06:00 +01:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
bin_PROGRAMS = \
|
2015-03-28 11:06:00 +01:00
|
|
|
taler-mint-httpd
|
2015-01-08 18:37:20 +01:00
|
|
|
|
|
|
|
taler_mint_httpd_SOURCES = \
|
2015-04-15 22:33:25 +02:00
|
|
|
taler-mint-httpd.c taler-mint-httpd.h \
|
2015-01-28 20:10:59 +01:00
|
|
|
taler-mint-httpd_keystate.c taler-mint-httpd_keystate.h \
|
|
|
|
taler-mint-httpd_db.c taler-mint-httpd_db.h \
|
2015-01-16 13:50:07 +01:00
|
|
|
taler-mint-httpd_parsing.c taler-mint-httpd_parsing.h \
|
|
|
|
taler-mint-httpd_responses.c taler-mint-httpd_responses.h \
|
2015-04-15 22:33:25 +02:00
|
|
|
taler-mint-httpd_mhd.c taler-mint-httpd_mhd.h \
|
2015-06-30 22:09:15 +02:00
|
|
|
taler-mint-httpd_admin.c taler-mint-httpd_admin.h \
|
2015-04-15 22:33:25 +02:00
|
|
|
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
|
2015-01-08 18:37:20 +01:00
|
|
|
taler_mint_httpd_LDADD = \
|
|
|
|
$(LIBGCRYPT_LIBS) \
|
|
|
|
$(top_builddir)/src/util/libtalerutil.la \
|
2015-03-28 11:06:00 +01:00
|
|
|
$(top_builddir)/src/mintdb/libtalermintdb.la \
|
2015-01-08 18:37:20 +01:00
|
|
|
-lmicrohttpd \
|
|
|
|
-ljansson \
|
|
|
|
-lgnunetutil \
|
|
|
|
-lpthread
|
2015-04-15 22:33:25 +02:00
|
|
|
|
|
|
|
if HAVE_DEVELOPER
|
|
|
|
taler_mint_httpd_SOURCES += \
|
|
|
|
taler-mint-httpd_test.c taler-mint-httpd_test.h
|
|
|
|
endif
|