# 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 = \ libgnunetjsonapi.la libgnunetjsonapi_la_LDFLAGS = \ -version-info 0:0:0 \ -no-undefined libgnunetjsonapi_la_SOURCES = \ jsonapi.c libgnunetjsonapi_la_LIBADD = \ $(top_builddir)/src/util/libgnunetutil.la \ $(top_builddir)/src/json/libgnunetjson.la \ $(top_builddir)/src/rest/libgnunetrest.la \ -ljansson \ $(XLIB) check_PROGRAMS = \ test_jsonapi TESTS = \ $(check_PROGRAMS) test_jsonapi_SOURCES = \ test_jsonapi.c test_jsonapi_LDADD = \ libgnunetjsonapi.la \ $(top_builddir)/src/util/libgnunetutil.la \ -ljansson