summaryrefslogtreecommitdiff
path: root/src/sync/Makefile.am
blob: c703348f1e0dcd8ecdc6dbada73b160a6578cf2d (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
# 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_parsing.c sync-httpd_parsing.h \
  sync-httpd_responses.c sync-httpd_responses.h \
  sync-httpd_mhd.c sync-httpd_mhd.h \
  sync-httpd_policy.c sync-httpd_policy.h

sync_httpd_LDADD = \
  $(top_builddir)/src/stasis/libsyncdb.la \
  -lmicrohttpd \
  -ljansson \
  -lgnunetcurl \
  -lgnunetjson \
  -lgnunetutil

EXTRA_DIST = \
  $(pkgcfg_DATA)