aboutsummaryrefslogtreecommitdiff
path: root/src/jsonapi/Makefile.am
blob: 054d3c5506723287e934926b30ef47fb682dab4e (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# 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 \
	libgnunetjsonapiutils.la

libgnunetjsonapiutils_la_LDFLAGS = \
	-version-info 0:0:0 \
	-no-undefined
libgnunetjsonapiutils_la_SOURCES = \
	jsonapi.c
libgnunetjsonapiutils_la_LIBADD = \
	$(top_builddir)/src/util/libgnunetutil.la \
	$(top_builddir)/src/rest/libgnunetrest.la \
  $(XLIB)

libgnunetjsonapi_la_LDFLAGS = \
  -version-info 0:0:0 \
  -no-undefined
libgnunetjsonapi_la_SOURCES = \
	jsonapi_document.c jsonapi_objects.h \
	jsonapi_resource.c \
	jsonapi_error.c \
	jsonapi_relationship.c
libgnunetjsonapi_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
	$(top_builddir)/src/json/libgnunetjson.la \
  -ljansson \
  $(XLIB)

check_PROGRAMS = \
  test_jsonapi

TESTS = \
  $(check_PROGRAMS)

test_jsonapi_SOURCES = \
  test_jsonapi.c
test_jsonapi_LDADD = \
  libgnunetjsonapi.la \
  $(top_builddir)/src/json/libgnunetjson.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  -ljansson