exchange/src/util/Makefile.am

139 lines
2.5 KiB
Makefile
Raw Normal View History

# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include $(LIBGCRYPT_CFLAGS)
2015-01-08 18:37:20 +01:00
2015-04-13 13:57:38 +02:00
if USE_COVERAGE
AM_CFLAGS = --coverage -O0
XLIB = -lgcov
endif
2020-11-22 18:31:33 +01:00
libexecdir = $(libdir)/taler/libexec
pkgcfgdir = $(prefix)/share/taler/config.d/
pkgcfg_DATA = \
2020-11-15 13:26:49 +01:00
paths.conf \
taler-helper-crypto-rsa.conf
EXTRA_DIST = \
2016-05-04 10:21:35 +02:00
paths.conf \
2020-11-22 18:31:33 +01:00
taler-config.in \
2020-11-23 21:10:55 +01:00
test_helper_eddsa.conf \
2020-11-22 18:31:33 +01:00
test_helper_rsa.conf
libexec_PROGRAMS = \
2020-11-22 23:31:35 +01:00
taler-helper-crypto-eddsa \
taler-helper-crypto-rsa
2016-11-17 13:33:17 +01:00
bin_SCRIPTS = \
taler-config
2020-03-28 22:12:47 +01:00
edit_script = $(SED) -e 's,%libdir%,$(libdir),'g $(NULL)
taler-config: taler-config.in
rm -f $@ $@.tmp && \
$(edit_script) $< >$@.tmp && \
chmod a-w+x $@.tmp && \
mv $@.tmp $@
taler_helper_crypto_rsa_SOURCES = \
taler-helper-crypto-rsa.c taler-helper-crypto-rsa.h
taler_helper_crypto_rsa_LDADD = \
libtalerutil.la \
-lgnunetutil \
2020-11-15 12:27:26 +01:00
-lpthread \
$(LIBGCRYPT_LIBS) \
$(XLIB)
2020-03-28 22:12:47 +01:00
2020-11-22 23:31:35 +01:00
taler_helper_crypto_eddsa_SOURCES = \
taler-helper-crypto-eddsa.c taler-helper-crypto-eddsa.h
taler_helper_crypto_eddsa_LDADD = \
libtalerutil.la \
-lgnunetutil \
-lpthread \
$(LIBGCRYPT_LIBS) \
$(XLIB)
2015-01-08 18:37:20 +01:00
lib_LTLIBRARIES = \
libtalerutil.la
libtalerutil_la_SOURCES = \
amount.c \
2020-01-19 20:33:07 +01:00
config.c \
crypto.c \
2020-11-22 22:25:49 +01:00
crypto_helper_denom.c \
crypto_helper_esign.c \
crypto_wire.c \
2020-01-19 20:33:07 +01:00
getopt.c \
2020-08-19 18:19:00 +02:00
lang.c \
2020-01-19 20:36:34 +01:00
mhd.c \
offline_signatures.c \
2020-01-19 20:33:07 +01:00
payto.c \
secmod_signatures.c \
2020-07-22 07:37:39 +02:00
taler_error_codes.c \
2020-01-19 20:33:07 +01:00
url.c \
2015-01-08 18:37:20 +01:00
util.c \
2020-06-12 21:16:40 +02:00
yna.c \
os_installation.c
2015-01-08 18:37:20 +01:00
libtalerutil_la_LIBADD = \
-lgnunetutil \
$(LIBGCRYPT_LIBS) \
2015-04-13 13:57:38 +02:00
-lmicrohttpd $(XLIB)
2015-01-08 18:37:20 +01:00
libtalerutil_la_LDFLAGS = \
-version-info 0:0:0 \
-export-dynamic -no-undefined
2020-11-22 18:31:33 +01:00
AM_TESTS_ENVIRONMENT=export TALER_PREFIX=$${TALER_PREFIX:-@libdir@};export PATH=$${TALER_PREFIX:-@prefix@}/bin:$$PATH;
check_PROGRAMS = \
2015-04-13 17:20:46 +02:00
test_amount \
2018-01-31 17:47:01 +01:00
test_crypto \
2020-11-23 21:10:55 +01:00
test_helper_eddsa \
2020-11-22 18:31:33 +01:00
test_helper_rsa \
test_payto \
2018-01-31 17:47:01 +01:00
test_url
TESTS = \
$(check_PROGRAMS)
2015-04-13 17:20:46 +02:00
test_amount_SOURCES = \
test_amount.c
test_amount_LDADD = \
-lgnunetutil \
libtalerutil.la
test_crypto_SOURCES = \
test_crypto.c
test_crypto_LDADD = \
-lgnunetutil \
libtalerutil.la
2018-01-31 17:47:01 +01:00
test_payto_SOURCES = \
test_payto.c
test_payto_LDADD = \
-lgnunetutil \
libtalerutil.la
2020-11-23 21:10:55 +01:00
test_helper_eddsa_SOURCES = \
test_helper_eddsa.c
test_helper_eddsa_LDADD = \
-lgnunetutil \
libtalerutil.la
2020-11-22 18:31:33 +01:00
test_helper_rsa_SOURCES = \
test_helper_rsa.c
test_helper_rsa_LDADD = \
-lgnunetutil \
libtalerutil.la
2018-01-31 17:47:01 +01:00
test_url_SOURCES = \
test_url.c
test_url_LDADD = \
-lgnunetutil \
libtalerutil.la