anastasis

Credential backup and recovery protocol and service
Log | Files | Refs | Submodules | README | LICENSE

Makefile.am (657B)


      1 # This Makefile.am is in the public domain
      2 AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_srcdir)/src/backend -I$(top_srcdir)/src/lib
      3 
      4 if USE_COVERAGE
      5   AM_CFLAGS = --coverage -O0
      6   XLIB = -lgcov
      7 endif
      8 
      9 lib_LTLIBRARIES = \
     10   libanastasis.la
     11 
     12 libanastasis_la_LDFLAGS = \
     13   -version-info 0:0:0 \
     14   -no-undefined
     15 libanastasis_la_SOURCES = \
     16   anastasis_backup.c \
     17   anastasis_meta.c \
     18   anastasis_recovery.c
     19 libanastasis_la_LIBADD = \
     20   $(top_builddir)/src/util/libanastasisutil.la \
     21   $(top_builddir)/src/restclient/libanastasisrest.la \
     22   -ltalerjson \
     23   -ltalerutil \
     24   -ltalermerchant \
     25   -lgnunetjson \
     26   -lgnunetutil \
     27   -ljansson \
     28   -lz \
     29   $(XLIB)