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

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

pkgcfg_DATA = \
  sync.conf

bin_PROGRAMS = \
  sync-httpd

sync_httpd_SOURCES = \
  sync-httpd.c sync-httpd.h \
  sync-httpd_backup.c sync-httpd_backup.h \
  sync-httpd_backup_post.c \
  sync-httpd_mhd.c sync-httpd_mhd.h \
  sync-httpd_terms.c sync-httpd_terms.h
sync_httpd_LDADD = \
  $(top_builddir)/src/syncdb/libsyncdb.la \
  -lmicrohttpd \
  -ljansson \
  -ltalermerchant \
  -ltalermhd \
  -ltalerjson \
  -ltalerutil \
  -lgnunetcurl \
  -lgnunetjson \
  -lgnunetutil

EXTRA_DIST = \
  $(pkgcfg_DATA)