2022-08-16 13:56:04 +02:00
|
|
|
# This Makefile.am is in the public domain
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src/include $(LIBGCRYPT_CFLAGS)
|
|
|
|
|
|
|
|
if USE_COVERAGE
|
|
|
|
AM_CFLAGS = --coverage -O0
|
|
|
|
XLIB = -lgcov
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = \
|
|
|
|
libtalertemplating.la
|
|
|
|
|
|
|
|
noinst_LTLIBRARIES = \
|
|
|
|
libmustach.la
|
|
|
|
|
|
|
|
libtalertemplating_la_SOURCES = \
|
|
|
|
mustach.c mustach.h \
|
|
|
|
mustach-jansson.c mustach-jansson.h \
|
|
|
|
templating_api.c
|
|
|
|
libtalertemplating_la_LIBADD = \
|
2022-09-26 19:58:22 +02:00
|
|
|
$(top_builddir)/src/mhd/libtalermhd.la \
|
|
|
|
$(top_builddir)/src/util/libtalerutil.la \
|
|
|
|
-ljansson \
|
2022-08-16 13:56:04 +02:00
|
|
|
-lgnunetutil \
|
|
|
|
$(XLIB)
|
|
|
|
libtalertemplating_la_LDFLAGS = \
|
|
|
|
-version-info 0:0:0 \
|
|
|
|
-no-undefined
|
|
|
|
|
|
|
|
|
|
|
|
libmustach_la_SOURCES = \
|
|
|
|
mustach.c mustach.h \
|
|
|
|
mustach-jansson.c mustach-jansson.h
|
|
|
|
|
|
|
|
test_mustach_jansson_SOURCES = \
|
|
|
|
test_mustach_jansson.c
|
|
|
|
test_mustach_jansson_LDADD = \
|
|
|
|
-lgnunetutil \
|
2022-08-18 15:34:16 +02:00
|
|
|
-ljansson \
|
|
|
|
-lmustach \
|
2022-08-16 13:56:04 +02:00
|
|
|
$(XLIB)
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
|
|
|
test_mustach_jansson
|
|
|
|
|
|
|
|
check_SCRIPTS = \
|
|
|
|
run-original-tests.sh
|
|
|
|
|
|
|
|
TESTS = $(check_SCRIPTS) $(check_PROGRAMS)
|
|
|
|
|
|
|
|
EXTRA_DIST = \
|
|
|
|
$(check_SCRIPTS)
|