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

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

lib_LTLIBRARIES = \
  libsync.la 

libsync_la_LDFLAGS = \
  -version-info 0:0:0 \
  -no-undefined
libsync_la_SOURCES = \
  sync_api_curl_defaults.c sync_api_curl_defaults.h \
  sync_api_download.c \
  sync_api_upload.c
libsync_la_LIBADD = \
  -lgnunetcurl \
  -lgnunetjson \
  -ltalerjson \
  -ltalerutil \
  -lgnunetutil \
  -ljansson \
  $(XLIB)