13da9dc0f59c2b3e835fdbfc561bb155921e4905
[oweals/gnunet.git] / src / credential / Makefile.am
1 # This Makefile.am is in the public domain
2 AM_CPPFLAGS = -I$(top_srcdir)/src/include
3
4 EXTRA_DIST = \
5   test_credential_defaults.conf \
6   test_credential_lookup.conf
7
8
9 if USE_COVERAGE
10   AM_CFLAGS = --coverage -O0
11 endif
12
13 pkgcfgdir = $(pkgdatadir)/config.d/
14
15 libexecdir= $(pkglibdir)/libexec/
16
17 plugindir = $(libdir)/gnunet
18
19 pkgcfg_DATA = \
20   credential.conf
21
22
23 # /usr/lib - compiles a layer which can be used to be communicagte with the service
24 lib_LTLIBRARIES = \
25   libgnunetcredential.la
26
27 # /usr/lib/gnunet/libexec - Business logic . Separate process 
28 libexec_PROGRAMS = \
29   gnunet-service-credential 
30
31 bin_PROGRAMS = \
32   gnunet-credential
33
34 plugin_LTLIBRARIES = \
35   libgnunet_plugin_gnsrecord_credential.la
36
37
38 if HAVE_MHD
39 if HAVE_JSON
40 plugin_LTLIBRARIES += libgnunet_plugin_rest_credential.la
41 endif
42 endif
43
44
45 gnunet_credential_SOURCES = \
46  gnunet-credential.c
47 gnunet_credential_LDADD = \
48   libgnunetcredential.la \
49   $(top_builddir)/src/util/libgnunetutil.la \
50         $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
51   $(top_builddir)/src/identity/libgnunetidentity.la \
52   $(GN_LIBINTL)
53
54
55 libgnunet_plugin_gnsrecord_credential_la_SOURCES = \
56   plugin_gnsrecord_credential.c
57 libgnunet_plugin_gnsrecord_credential_la_LIBADD = \
58   $(top_builddir)/src/util/libgnunetutil.la \
59   $(LTLIBINTL)
60 libgnunet_plugin_gnsrecord_credential_la_LDFLAGS = \
61  $(GN_PLUGIN_LDFLAGS)
62
63
64
65 gnunet_service_credential_SOURCES = \
66  gnunet-service-credential.c 
67 gnunet_service_credential_LDADD = \
68   $(top_builddir)/src/util/libgnunetutil.la \
69         $(top_builddir)/src/gns/libgnunetgns.la \
70   $(top_builddir)/src/statistics/libgnunetstatistics.la \
71   $(GN_LIBINTL)
72
73
74 libgnunetcredential_la_SOURCES = \
75  credential_api.c credential.h
76 libgnunetcredential_la_LIBADD = \
77  $(top_builddir)/src/util/libgnunetutil.la $(XLIB) 
78 libgnunetcredential_la_LDFLAGS = \
79   $(GN_LIB_LDFLAGS)
80
81
82 libgnunet_plugin_rest_credential_la_SOURCES = \
83   plugin_rest_credential.c
84 libgnunet_plugin_rest_credential_la_LIBADD = \
85   libgnunetcredential.la \
86         $(top_builddir)/src/rest/libgnunetrest.la \
87         $(top_builddir)/src/jsonapi/libgnunetjsonapi.la \
88   $(top_builddir)/src/jsonapi/libgnunetjsonapiutils.la \
89   $(top_builddir)/src/util/libgnunetutil.la $(XLIBS) \
90   $(LTLIBINTL) -ljansson -lmicrohttpd
91 libgnunet_plugin_rest_credential_la_LDFLAGS = \
92  $(GN_PLUGIN_LDFLAGS)
93
94
95 check_SCRIPTS = \
96   test_credential_issue.sh \
97         test_credential_verify_simple.sh \
98         test_credential_verify.sh
99
100 if ENABLE_TEST_RUN
101 if HAVE_SQLITE
102  AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
103  TESTS = $(check_SCRIPTS)
104 endif
105 endif