blob: 991e36a955ca8cd15e0cdf8d1279c8ea181ebd92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# This Makefile.am is in the public domain
AM_CPPFLAGS = -I$(top_srcdir)/src/include
pkgcfgdir= $(pkgdatadir)/config.d/
libexecdir= $(pkglibdir)/libexec/
plugindir = $(libdir)/gnunet
pkgcfg_DATA = \
consensus.conf
if MINGW
WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
endif
if USE_COVERAGE
AM_CFLAGS = -fprofile-arcs -ftest-coverage
endif
libexec_PROGRAMS = \
gnunet-service-consensus
if ENABLE_MALICIOUS
libexec_PROGRAMS += \
gnunet-service-evil-consensus
endif
do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'
SUFFIXES = .py.in .py
.py.in.py:
$(do_subst) < $< > $@
chmod +x $@
check-python-style:
flake8 consensus-simulation.py.in
lib_LTLIBRARIES = \
libgnunetconsensus.la
gnunet_consensus_profiler_SOURCES = \
gnunet-consensus-profiler.c
gnunet_consensus_profiler_LDADD = \
$(top_builddir)/src/util/libgnunetutil.la \
libgnunetconsensus.la \
$(top_builddir)/src/testbed/libgnunettestbed.la \
$(GN_LIBINTL)
gnunet_service_consensus_SOURCES = \
gnunet-service-consensus.c
gnunet_service_consensus_LDADD = \
$(top_builddir)/src/util/libgnunetutil.la \
$(top_builddir)/src/core/libgnunetcore.la \
$(top_builddir)/src/set/libgnunetset.la \
$(top_builddir)/src/statistics/libgnunetstatistics.la \
$(GN_LIBINTL)
gnunet_service_evil_consensus_SOURCES = \
gnunet-service-consensus.c \
consensus_protocol.h
gnunet_service_evil_consensus_LDADD = \
$(top_builddir)/src/util/libgnunetutil.la \
$(top_builddir)/src/core/libgnunetcore.la \
$(top_builddir)/src/set/libgnunetset.la \
$(top_builddir)/src/statistics/libgnunetstatistics.la \
$(GN_LIBINTL)
gnunet_service_evil_consensus_CFLAGS = -DEVIL
libgnunetconsensus_la_SOURCES = \
consensus_api.c \
consensus.h
libgnunetconsensus_la_LIBADD = \
$(top_builddir)/src/util/libgnunetutil.la \
$(LTLIBINTL)
libgnunetconsensus_la_LDFLAGS = \
$(GN_LIB_LDFLAGS)
plugin_LTLIBRARIES = \
libgnunet_plugin_block_consensus.la
libgnunet_plugin_block_consensus_la_SOURCES = \
plugin_block_consensus.c
libgnunet_plugin_block_consensus_la_LIBADD = \
$(top_builddir)/src/block/libgnunetblock.la \
$(top_builddir)/src/block/libgnunetblockgroup.la \
$(top_builddir)/src/util/libgnunetutil.la \
$(LTLIBINTL)
libgnunet_plugin_block_consensus_la_LDFLAGS = \
$(GN_PLUGIN_LDFLAGS)
if HAVE_TESTING
bin_PROGRAMS = \
gnunet-consensus-profiler
check_PROGRAMS = \
test_consensus_api
if ENABLE_TEST_RUN
AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
TESTS = $(check_PROGRAMS)
endif
endif
test_consensus_api_SOURCES = \
test_consensus_api.c
test_consensus_api_LDADD = \
$(top_builddir)/src/util/libgnunetutil.la \
$(top_builddir)/src/testing/libgnunettesting.la \
libgnunetconsensus.la
noinst_SCRIPTS = \
consensus-simulation.py
CLEANFILES = \
$(noinst_SCRIPTS)
EXTRA_DIST = \
test_consensus.conf \
consensus-simulation.py.in
|