exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 5da22c60de9e79081a10f6ea70266a8032aa52c1
parent 94f0d80cc115ce93e88b64f8e3d0fa81e853f6d3
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat, 26 Oct 2019 20:05:44 +0200

turn teah_common.c into libtalercurl, fixes many ugly issues in build system

Diffstat:
Asrc/curl/Makefile.am | 20++++++++++++++++++++
1 file changed, 20 insertions(+), 0 deletions(-)

diff --git a/src/curl/Makefile.am b/src/curl/Makefile.am @@ -0,0 +1,20 @@ +# 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 = \ + libtalercurl.la + +libtalercurl_la_LDFLAGS = \ + -version-info 0:0:0 \ + -no-undefined +libtalercurl_la_SOURCES = \ + curl.c +libtalercurl_la_LIBADD = \ + -lgnunetcurl \ + -lgnunetutil \ + $(XLIB)