summaryrefslogtreecommitdiff
path: root/src/json/Makefile.am
blob: 6f71b871855c418d65de4df1e73368caf182e518 (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
28
29
30
31
32
33
34
35
36
37
38
# 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 = \
  libtalerjson.la

libtalerjson_la_SOURCES = \
  json.c \
  json_helper.c
libtalerjson_la_LDFLAGS = \
  -version-info 0:0:0 \
  -export-dynamic -no-undefined
libtalerjson_la_LIBADD = \
  -lgnunetjson \
  $(top_builddir)/src/util/libtalerutil.la \
  -lgnunetutil \
  -ljansson \
  $(XLIB)

TESTS = \
  test_json

check_PROGRAMS= \
  test_json

test_json_SOURCES = \
  test_json.c
test_json_LDADD = \
  -ltalerjson \
  -lgnunetjson \
  $(top_builddir)/src/util/libtalerutil.la \
  -lgnunetutil \
  -ljansson