Adapting verify successor code to use trail id
[oweals/gnunet.git] / src / cadet / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/src/include
2
3 if MINGW
4   WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols
5 endif
6
7 if USE_COVERAGE
8   AM_CFLAGS = --coverage -O0
9   XLIB = -lgcov
10 endif
11
12 pkgcfgdir= $(pkgdatadir)/config.d/
13
14 libexecdir= $(pkglibdir)/libexec/
15
16 pkgcfg_DATA = \
17   cadet.conf
18
19 plugindir = $(libdir)/gnunet
20
21 AM_CLFAGS = -g
22
23 libexec_PROGRAMS = \
24  gnunet-service-cadet $(EXP_LIBEXEC)
25
26 bin_PROGRAMS = \
27  gnunet-cadet
28
29 lib_LTLIBRARIES = \
30   libgnunetcadet.la $(EXP_LIB)
31
32 libgnunetcadet_la_SOURCES = \
33   cadet_api.c cadet_common.c
34 libgnunetcadet_la_LIBADD = \
35   $(top_builddir)/src/util/libgnunetutil.la \
36   $(XLIB) \
37   $(LTLIBINTL)
38 libgnunetcadet_la_LDFLAGS = \
39   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
40   -version-info 5:0:0
41
42 gnunet_cadet_SOURCES = \
43   gnunet-cadet.c
44 gnunet_cadet_LDADD = \
45   $(top_builddir)/src/cadet/libgnunetcadet.la \
46   $(top_builddir)/src/util/libgnunetutil.la
47 gnunet_cadet_DEPENDENCIES = \
48   libgnunetcadet.la
49
50 gnunet_service_cadet_SOURCES = \
51  gnunet-service-cadet_tunnel.c gnunet-service-cadet_tunnel.h \
52  gnunet-service-cadet_connection.c gnunet-service-cadet_connection.h \
53  gnunet-service-cadet_channel.c gnunet-service-cadet_channel.h \
54  gnunet-service-cadet_local.c gnunet-service-cadet_local.h \
55  gnunet-service-cadet_peer.c gnunet-service-cadet_peer.h \
56  gnunet-service-cadet_dht.c gnunet-service-cadet_dht.h \
57  gnunet-service-cadet_hello.c gnunet-service-cadet_hello.h \
58  cadet_path.c cadet_path.h \
59  cadet_common.c \
60  gnunet-service-cadet.c
61 gnunet_service_cadet_CFLAGS = $(AM_CFLAGS)
62 gnunet_service_cadet_LDADD = \
63   $(top_builddir)/src/util/libgnunetutil.la \
64   $(top_builddir)/src/transport/libgnunettransport.la \
65   $(top_builddir)/src/core/libgnunetcore.la \
66   $(top_builddir)/src/dht/libgnunetdht.la \
67   $(top_builddir)/src/statistics/libgnunetstatistics.la \
68   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
69   $(top_builddir)/src/hello/libgnunethello.la \
70   $(top_builddir)/src/block/libgnunetblock.la
71 gnunet_service_cadet_DEPENDENCIES = \
72   $(top_builddir)/src/util/libgnunetutil.la \
73   $(top_builddir)/src/transport/libgnunettransport.la \
74   $(top_builddir)/src/core/libgnunetcore.la \
75   $(top_builddir)/src/dht/libgnunetdht.la \
76   $(top_builddir)/src/statistics/libgnunetstatistics.la \
77   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
78   $(top_builddir)/src/hello/libgnunethello.la \
79   $(top_builddir)/src/block/libgnunetblock.la
80 if LINUX
81   gnunet_service_cadet_LDFLAGS = -lrt
82 endif
83
84
85 if HAVE_TESTING
86  noinst_LIBRARIES = libgnunetcadettest.a $(noinst_LIB_EXP)
87  noinst_PROGRAMS = gnunet-cadet-profiler
88 endif
89
90 libgnunetcadettest_a_SOURCES = \
91   cadet_test_lib.c cadet_test_lib.h
92 libgnunetcadettest_a_LIBADD = \
93  $(top_builddir)/src/util/libgnunetutil.la \
94  $(top_builddir)/src/testbed/libgnunettestbed.la \
95  $(top_builddir)/src/cadet/libgnunetcadet.la
96 libgnunetcadettest_a_DEPENDENCIES = \
97   libgnunetcadet.la
98
99 if HAVE_TESTING
100 check_PROGRAMS = \
101   test_cadet_single \
102   test_cadet_local \
103   test_cadet_2_forward \
104   test_cadet_2_signal \
105   test_cadet_2_keepalive \
106   test_cadet_2_speed \
107   test_cadet_2_speed_ack \
108   test_cadet_2_speed_backwards \
109   test_cadet_2_speed_reliable \
110   test_cadet_2_speed_reliable_backwards \
111   test_cadet_5_forward \
112   test_cadet_5_signal \
113   test_cadet_5_keepalive \
114   test_cadet_5_speed \
115   test_cadet_5_speed_ack \
116   test_cadet_5_speed_backwards \
117   test_cadet_5_speed_reliable \
118   test_cadet_5_speed_reliable_backwards
119 endif
120
121 ld_cadet_test_lib = \
122   $(top_builddir)/src/util/libgnunetutil.la \
123   $(top_builddir)/src/testing/libgnunettesting.la \
124   $(top_builddir)/src/cadet/libgnunetcadettest.a \
125   $(top_builddir)/src/cadet/libgnunetcadet.la \
126   $(top_builddir)/src/testbed/libgnunettestbed.la \
127   $(top_builddir)/src/statistics/libgnunetstatistics.la
128
129 dep_cadet_test_lib = \
130   libgnunetcadet.la \
131   libgnunetcadettest.a \
132   $(top_builddir)/src/statistics/libgnunetstatistics.la
133
134
135 gnunet_cadet_profiler_SOURCES = \
136   gnunet-cadet-profiler.c
137 gnunet_cadet_profiler_LDADD = $(ld_cadet_test_lib)
138 gnunet_cadet_profiler_DEPENDENCIES = $(dep_cadet_test_lib)
139
140
141 test_cadet_single_SOURCES = \
142   test_cadet_single.c
143 test_cadet_single_LDADD = $(ld_cadet_test_lib)
144 test_cadet_single_DEPENDENCIES = $(dep_cadet_test_lib)
145
146 test_cadet_local_SOURCES = \
147   test_cadet_local.c
148 test_cadet_local_LDADD = $(ld_cadet_test_lib)
149 test_cadet_local_DEPENDENCIES = $(dep_cadet_test_lib)
150
151
152
153 test_cadet_2_forward_SOURCES = \
154   test_cadet.c
155 test_cadet_2_forward_LDADD = $(ld_cadet_test_lib)
156 test_cadet_2_forward_DEPENDENCIES = $(dep_cadet_test_lib)
157
158 test_cadet_2_signal_SOURCES = \
159   test_cadet.c
160 test_cadet_2_signal_LDADD = $(ld_cadet_test_lib)
161 test_cadet_2_signal_DEPENDENCIES = $(dep_cadet_test_lib)
162
163 test_cadet_2_keepalive_SOURCES = \
164   test_cadet.c
165 test_cadet_2_keepalive_LDADD = $(ld_cadet_test_lib)
166 test_cadet_2_keepalive_DEPENDENCIES = $(dep_cadet_test_lib)
167
168 test_cadet_2_speed_SOURCES = \
169   test_cadet.c
170 test_cadet_2_speed_LDADD = $(ld_cadet_test_lib)
171 test_cadet_2_speed_DEPENDENCIES = $(dep_cadet_test_lib)
172
173 test_cadet_2_speed_ack_SOURCES = \
174   test_cadet.c
175 test_cadet_2_speed_ack_LDADD = $(ld_cadet_test_lib)
176 test_cadet_2_speed_ack_DEPENDENCIES = $(dep_cadet_test_lib)
177
178 test_cadet_2_speed_backwards_SOURCES = \
179   test_cadet.c
180 test_cadet_2_speed_backwards_LDADD = $(ld_cadet_test_lib)
181 test_cadet_2_speed_backwards_DEPENDENCIES = $(dep_cadet_test_lib)
182
183 test_cadet_2_speed_reliable_SOURCES = \
184   test_cadet.c
185 test_cadet_2_speed_reliable_LDADD = $(ld_cadet_test_lib)
186 test_cadet_2_speed_reliable_DEPENDENCIES = $(dep_cadet_test_lib)
187
188 test_cadet_2_speed_reliable_backwards_SOURCES = \
189   test_cadet.c
190 test_cadet_2_speed_reliable_backwards_LDADD = $(ld_cadet_test_lib)
191 test_cadet_2_speed_reliable_backwards_DEPENDENCIES = $(dep_cadet_test_lib)
192
193
194
195 test_cadet_5_forward_SOURCES = \
196   test_cadet.c
197 test_cadet_5_forward_LDADD = $(ld_cadet_test_lib)
198 test_cadet_5_forward_DEPENDENCIES = $(dep_cadet_test_lib)
199
200 test_cadet_5_signal_SOURCES = \
201   test_cadet.c
202 test_cadet_5_signal_LDADD = $(ld_cadet_test_lib)
203 test_cadet_5_signal_DEPENDENCIES = $(dep_cadet_test_lib)
204
205 test_cadet_5_keepalive_SOURCES = \
206   test_cadet.c
207 test_cadet_5_keepalive_LDADD = $(ld_cadet_test_lib)
208 test_cadet_5_keepalive_DEPENDENCIES = $(dep_cadet_test_lib)
209
210 test_cadet_5_speed_SOURCES = \
211   test_cadet.c
212 test_cadet_5_speed_LDADD = $(ld_cadet_test_lib)
213 test_cadet_5_speed_DEPENDENCIES = $(dep_cadet_test_lib)
214
215 test_cadet_5_speed_ack_SOURCES = \
216   test_cadet.c
217 test_cadet_5_speed_ack_LDADD = $(ld_cadet_test_lib)
218 test_cadet_5_speed_ack_DEPENDENCIES = $(dep_cadet_test_lib)
219
220 test_cadet_5_speed_backwards_SOURCES = \
221   test_cadet.c
222 test_cadet_5_speed_backwards_LDADD = $(ld_cadet_test_lib)
223 test_cadet_5_speed_backwards_DEPENDENCIES = $(dep_cadet_test_lib)
224
225 test_cadet_5_speed_reliable_SOURCES = \
226   test_cadet.c
227 test_cadet_5_speed_reliable_LDADD = $(ld_cadet_test_lib)
228 test_cadet_5_speed_reliable_DEPENDENCIES = $(dep_cadet_test_lib)
229
230 test_cadet_5_speed_reliable_backwards_SOURCES = \
231   test_cadet.c
232 test_cadet_5_speed_reliable_backwards_LDADD = $(ld_cadet_test_lib)
233 test_cadet_5_speed_reliable_backwards_DEPENDENCIES = $(dep_cadet_test_lib)
234
235
236 if ENABLE_TEST_RUN
237 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
238 TESTS = \
239  $(check_PROGRAMS)
240 endif
241
242 EXTRA_DIST = \
243   cadet.h cadet_protocol.h \
244   test_cadet.conf \
245   test_cadet_drop.conf
246