diff options
Diffstat (limited to 'src/authorization/libanastasiseufin/Makefile.am')
-rw-r--r-- | src/authorization/libanastasiseufin/Makefile.am | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/authorization/libanastasiseufin/Makefile.am b/src/authorization/libanastasiseufin/Makefile.am new file mode 100644 index 0000000..3cd222e --- /dev/null +++ b/src/authorization/libanastasiseufin/Makefile.am | |||
@@ -0,0 +1,28 @@ | |||
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 | libanastasiseufin.la | ||
11 | |||
12 | libanastasiseufin_la_LDFLAGS = \ | ||
13 | -version-info 0:0:0 \ | ||
14 | -no-undefined | ||
15 | libanastasiseufin_la_SOURCES = \ | ||
16 | lae_common.c lae_common.h \ | ||
17 | lae_credit.c \ | ||
18 | lae_parse.c | ||
19 | libanastasiseufin_la_LIBADD = \ | ||
20 | -ltalerjson \ | ||
21 | -ltalercurl \ | ||
22 | -ltalerutil \ | ||
23 | -lgnunetcurl \ | ||
24 | -lgnunetjson \ | ||
25 | -lgnunetutil \ | ||
26 | -ljansson \ | ||
27 | $(LIBGNURLCURL_LIBS) \ | ||
28 | $(XLIB) | ||