- use tunnel encryption state to select decryption key
[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/mesh/libgnunetmesh.la \
49   $(top_builddir)/src/set/libgnunetset.la \
50   $(GN_LIBINTL)
51 gnunet_service_consensus_DEPENDENCIES = \
52   $(top_builddir)/src/set/libgnunetset.la
53
54 gnunet_service_evil_consensus_SOURCES = \
55  gnunet-service-consensus.c
56 gnunet_service_evil_consensus_LDADD = \
57   $(top_builddir)/src/util/libgnunetutil.la \
58   $(top_builddir)/src/core/libgnunetcore.la \
59   $(top_builddir)/src/mesh/libgnunetmesh.la \
60   $(top_builddir)/src/set/libgnunetset.la \
61   $(GN_LIBINTL)
62 gnunet_service_evil_consensus_DEPENDENCIES = \
63   $(top_builddir)/src/set/libgnunetset.la
64 gnunet_service_evil_consensus_CFLAGS = -DEVIL
65
66 libgnunetconsensus_la_SOURCES = \
67   consensus_api.c
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 TESTS = $(check_PROGRAMS)
79 endif
80
81 test_consensus_api_SOURCES = \
82  test_consensus_api.c
83 test_consensus_api_LDADD = \
84   $(top_builddir)/src/util/libgnunetutil.la \
85   $(top_builddir)/src/testing/libgnunettesting.la \
86   $(top_builddir)/src/consensus/libgnunetconsensus.la
87
88 EXTRA_DIST = \
89   test_consensus.conf
90