sync

Backup service to store encrypted wallet databases (experimental)
Log | Files | Refs | Submodules | README | LICENSE

Makefile.am (528B)


      1 # This Makefile.am is in the public domain
      2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
      3 
      4 if USE_COVERAGE
      5   AM_CFLAGS = --coverage -O0
      6   XLIB = -lgcov
      7 endif
      8 
      9 lib_LTLIBRARIES = \
     10   libsync.la
     11 
     12 libsync_la_LDFLAGS = \
     13   -version-info 0:1:0 \
     14   -no-undefined
     15 libsync_la_SOURCES = \
     16   sync_api_curl_defaults.c sync_api_curl_defaults.h \
     17   sync_api_download.c \
     18   sync_api_upload.c
     19 libsync_la_LIBADD = \
     20   -lgnunetcurl \
     21   -lgnunetjson \
     22   -ltalerjson \
     23   -ltalercurl \
     24   -ltalerutil \
     25   -lgnunetutil \
     26   -ljansson \
     27   -lcurl \
     28   $(XLIB)