diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-10-26 20:05:44 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-10-26 20:05:58 +0200 |
commit | 5da22c60de9e79081a10f6ea70266a8032aa52c1 (patch) | |
tree | 0995d0fa628d723a2dead8a6cef1bc20919b9afa | |
parent | 94f0d80cc115ce93e88b64f8e3d0fa81e853f6d3 (diff) | |
download | exchange-5da22c60de9e79081a10f6ea70266a8032aa52c1.tar.gz exchange-5da22c60de9e79081a10f6ea70266a8032aa52c1.zip |
turn teah_common.c into libtalercurl, fixes many ugly issues in build system
-rw-r--r-- | src/curl/Makefile.am | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/curl/Makefile.am b/src/curl/Makefile.am new file mode 100644 index 000000000..7ddfe4d66 --- /dev/null +++ b/src/curl/Makefile.am | |||
@@ -0,0 +1,20 @@ | |||
1 | # This Makefile.am is in the public domain | ||
2 | AM_CPPFLAGS = -I$(top_srcdir)/src/include | ||
3 | |||
4 | if USE_COVERAGE | ||
5 | AM_CFLAGS = --coverage -O0 | ||
6 | XLIB = -lgcov | ||
7 | endif | ||
8 | |||
9 | lib_LTLIBRARIES = \ | ||
10 | libtalercurl.la | ||
11 | |||
12 | libtalercurl_la_LDFLAGS = \ | ||
13 | -version-info 0:0:0 \ | ||
14 | -no-undefined | ||
15 | libtalercurl_la_SOURCES = \ | ||
16 | curl.c | ||
17 | libtalercurl_la_LIBADD = \ | ||
18 | -lgnunetcurl \ | ||
19 | -lgnunetutil \ | ||
20 | $(XLIB) | ||