summaryrefslogtreecommitdiff
path: root/src/mhd/Makefile.am
blob: ec0103f4be4288d46c69b928865ed8ab30175941 (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
# 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 = \
  libtalermhd.la

libtalermhd_la_SOURCES = \
  mhd_config.c \
  mhd_legal.c \
  mhd_parsing.c \
  mhd_responses.c 
libtalermhd_la_LDFLAGS = \
  -version-info 0:0:0 \
  -export-dynamic -no-undefined
libtalermhd_la_LIBADD = \
  -lgnunetjson \
  $(top_builddir)/src/json/libtalerjson.la \
  $(top_builddir)/src/util/libtalerutil.la \
  -lgnunetutil \
  -ljansson \
  $(XLIB)