exchange/src/mhd/Makefile.am

29 lines
554 B
Makefile
Raw Normal View History

2019-11-23 10:48:05 +01:00
# 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 = \
2019-11-23 11:48:35 +01:00
mhd_config.c \
2019-12-10 21:20:38 +01:00
mhd_legal.c \
2019-11-23 11:02:34 +01:00
mhd_parsing.c \
2020-12-31 22:13:12 +01:00
mhd_responses.c
2019-11-23 10:48:05 +01:00
libtalermhd_la_LDFLAGS = \
-version-info 0:0:0 \
2021-07-29 23:56:46 +02:00
-no-undefined
2019-11-23 10:48:05 +01:00
libtalermhd_la_LIBADD = \
-lgnunetjson \
$(top_builddir)/src/json/libtalerjson.la \
$(top_builddir)/src/util/libtalerutil.la \
-lgnunetutil \
2020-12-31 22:13:12 +01:00
-lmicrohttpd \
2019-11-23 10:48:05 +01:00
-ljansson \
2020-12-31 22:22:19 +01:00
-lz \
2019-11-23 10:48:05 +01:00
$(XLIB)