WIP commit of scalar product 2.0. It is unfinished and does not yet pass tests. This...
[oweals/gnunet.git] / src / consensus / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/src/include
2
3 pkgcfgdir= $(pkgdatadir)/config.d/
4
5 libexecdir= $(pkglibdir)/libexec/
6
7 pkgcfg_DATA = \
8   consensus.conf
9
10 if MINGW
11  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
12 endif
13
14 if USE_COVERAGE
15   AM_CFLAGS = -fprofile-arcs -ftest-coverage
16 endif
17
18 bin_PROGRAMS = \
19  gnunet-consensus-profiler
20
21 libexec_PROGRAMS = \
22  gnunet-service-consensus
23
24 # FIXME: add option "configure --with-evil"?
25 if HAVE_EXPERIMENTAL
26 libexec_PROGRAMS += \
27  gnunet-service-evil-consensus
28 endif
29
30 lib_LTLIBRARIES = \
31   libgnunetconsensus.la
32
33 gnunet_consensus_profiler_SOURCES = \
34  gnunet-consensus-profiler.c
35 gnunet_consensus_profiler_LDADD = \
36   $(top_builddir)/src/util/libgnunetutil.la \
37   $(top_builddir)/src/consensus/libgnunetconsensus.la \
38   $(top_builddir)/src/testbed/libgnunettestbed.la \
39   $(GN_LIBINTL)
40 gnunet_consensus_profiler_DEPENDENCIES = \
41   libgnunetconsensus.la
42
43 gnunet_service_consensus_SOURCES = \
44  gnunet-service-consensus.c
45 gnunet_service_consensus_LDADD = \
46   $(top_builddir)/src/util/libgnunetutil.la \
47   $(top_builddir)/src/core/libgnunetcore.la \
48   $(top_builddir)/src/set/libgnunetset.la \
49   $(GN_LIBINTL)
50 gnunet_service_consensus_DEPENDENCIES = \
51   $(top_builddir)/src/set/libgnunetset.la
52
53 gnunet_service_evil_consensus_SOURCES = \
54  gnunet-service-consensus.c \
55  consensus_protocol.h
56 gnunet_service_evil_consensus_LDADD = \
57   $(top_builddir)/src/util/libgnunetutil.la \
58   $(top_builddir)/src/core/libgnunetcore.la \
59   $(top_builddir)/src/set/libgnunetset.la \
60   $(GN_LIBINTL)
61 gnunet_service_evil_consensus_DEPENDENCIES = \
62   $(top_builddir)/src/set/libgnunetset.la
63 gnunet_service_evil_consensus_CFLAGS = -DEVIL
64
65 libgnunetconsensus_la_SOURCES = \
66   consensus_api.c \
67   consensus.h
68 libgnunetconsensus_la_LIBADD = \
69   $(top_builddir)/src/util/libgnunetutil.la \
70   $(LTLIBINTL)
71 libgnunetconsensus_la_LDFLAGS = \
72   $(GN_LIB_LDFLAGS)
73
74 check_PROGRAMS = \
75  test_consensus_api
76
77 if ENABLE_TEST_RUN
78 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
79 TESTS = $(check_PROGRAMS)
80 endif
81
82 test_consensus_api_SOURCES = \
83  test_consensus_api.c
84 test_consensus_api_LDADD = \
85   $(top_builddir)/src/util/libgnunetutil.la \
86   $(top_builddir)/src/testing/libgnunettesting.la \
87   $(top_builddir)/src/consensus/libgnunetconsensus.la
88
89 EXTRA_DIST = \
90   test_consensus.conf
91