Added mesh CLI with basic tunnel listing
[oweals/gnunet.git] / src / mesh / Makefile.am
1 INCLUDES = -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   mesh.conf
18
19 plugindir = $(libdir)/gnunet
20
21 AM_CLFAGS = -g
22
23 libexec_PROGRAMS = \
24  gnunet-service-mesh gnunet-service-mesh-new
25
26 bin_PROGRAMS = \
27  gnunet-mesh
28
29 lib_LTLIBRARIES = \
30   libgnunetmesh.la \
31   libgnunetmeshblock.la
32
33 plugin_LTLIBRARIES = \
34  libgnunet_plugin_block_mesh.la
35
36 libgnunet_plugin_block_mesh_la_SOURCES = \
37  plugin_block_mesh.c
38 libgnunet_plugin_block_mesh_la_LIBADD = \
39  $(top_builddir)/src/mesh/libgnunetmeshblock.la \
40  $(top_builddir)/src/block/libgnunetblock.la \
41  $(top_builddir)/src/util/libgnunetutil.la
42 libgnunet_plugin_block_mesh_la_LDFLAGS = \
43  $(GN_PLUGIN_LDFLAGS)
44 libgnunet_plugin_block_mesh_la_DEPENDENCIES = \
45  libgnunetmeshblock.la \
46  $(top_builddir)/src/block/libgnunetblock.la \
47  $(top_builddir)/src/util/libgnunetutil.la
48
49 libgnunetmesh_la_SOURCES = \
50   mesh_api.c mesh_common.c
51 libgnunetmesh_la_LIBADD = \
52   $(top_builddir)/src/util/libgnunetutil.la \
53   $(XLIB) \
54   $(LTLIBINTL)
55 libgnunetmesh_la_LDFLAGS = \
56   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
57   -version-info 1:0:0
58
59 libgnunetmeshblock_la_SOURCES = \
60   mesh_block_lib.c mesh_block_lib.h
61 libgnunetmeshblock_la_LIBADD = \
62   $(top_builddir)/src/util/libgnunetutil.la \
63   $(XLIB) \
64   $(LTLIBINTL)
65 libgnunetmeshblock_la_LDFLAGS = \
66   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
67   -version-info 2:0:0
68
69 gnunet_service_mesh_SOURCES = \
70  gnunet-service-mesh.c \
71  mesh_tunnel_tree.c mesh_tunnel_tree.h \
72  mesh_common.c
73 gnunet_service_mesh_CFLAGS = $(AM_CFLAGS)
74 gnunet_service_mesh_LDADD = \
75   $(top_builddir)/src/util/libgnunetutil.la \
76   $(top_builddir)/src/core/libgnunetcore.la \
77   $(top_builddir)/src/dht/libgnunetdht.la \
78   $(top_builddir)/src/statistics/libgnunetstatistics.la \
79   $(top_builddir)/src/block/libgnunetblock.la \
80   $(top_builddir)/src/mesh/libgnunetmeshblock.la \
81   $(top_builddir)/src/regex/libgnunetregex.la
82 gnunet_service_mesh_DEPENDENCIES = \
83   $(top_builddir)/src/util/libgnunetutil.la \
84   $(top_builddir)/src/core/libgnunetcore.la \
85   $(top_builddir)/src/dht/libgnunetdht.la \
86   $(top_builddir)/src/statistics/libgnunetstatistics.la \
87   $(top_builddir)/src/block/libgnunetblock.la \
88   libgnunetmeshblock.la \
89   $(top_builddir)/src/regex/libgnunetregex.la
90 if LINUX
91 gnunet_service_mesh_LDFLAGS = -lrt
92 endif
93
94 gnunet_mesh_SOURCES = \
95  gnunet-mesh.c         
96 gnunet_mesh_LDADD = \
97   $(top_builddir)/src/mesh/libgnunetmesh.la \
98   $(top_builddir)/src/util/libgnunetutil.la
99 gnunet_mesh_DEPENDENCIES = \
100   libgnunetmesh.la
101
102 gnunet_service_mesh_new_SOURCES = \
103  gnunet-service-mesh-new.c \
104  mesh_tunnel_tree.c \
105  mesh_common.c
106 gnunet_service_mesh_new_CFLAGS = $(AM_CFLAGS)
107 gnunet_service_mesh_new_LDADD = \
108   $(top_builddir)/src/util/libgnunetutil.la \
109   $(top_builddir)/src/core/libgnunetcore.la \
110   $(top_builddir)/src/dht/libgnunetdht.la \
111   $(top_builddir)/src/statistics/libgnunetstatistics.la \
112   $(top_builddir)/src/block/libgnunetblock.la \
113   $(top_builddir)/src/mesh/libgnunetmeshblock.la \
114   $(top_builddir)/src/regex/libgnunetregex.la
115 gnunet_service_mesh_new_DEPENDENCIES = \
116   $(top_builddir)/src/util/libgnunetutil.la \
117   $(top_builddir)/src/core/libgnunetcore.la \
118   $(top_builddir)/src/dht/libgnunetdht.la \
119   $(top_builddir)/src/statistics/libgnunetstatistics.la \
120   $(top_builddir)/src/block/libgnunetblock.la \
121   libgnunetmeshblock.la \
122   $(top_builddir)/src/regex/libgnunetregex.la
123 if LINUX
124 gnunet_service_mesh_new_LDFLAGS = -lrt
125 endif
126
127
128 noinst_PROGRAMS = \
129   gnunet-regex-profiler \
130   gnunet-daemon-regexprofiler
131
132 gnunet_regex_profiler_SOURCES = \
133   gnunet-regex-profiler.c
134 gnunet_regex_profiler_LDADD = \
135   $(top_builddir)/src/util/libgnunetutil.la \
136   $(top_builddir)/src/testbed/libgnunettestbed.la \
137   $(top_builddir)/src/mesh/libgnunetmesh.la \
138   $(top_builddir)/src/regex/libgnunetregex.la \
139   $(top_builddir)/src/statistics/libgnunetstatistics.la
140 gnunet_regex_profiler_DEPENDENCIES = \
141   libgnunetmesh.la
142
143 gnunet_daemon_regexprofiler_SOURCES = \
144   gnunet-daemon-regexprofiler.c
145 gnunet_daemon_regexprofiler_LDADD = \
146   $(top_builddir)/src/util/libgnunetutil.la \
147   $(top_builddir)/src/mesh/libgnunetmesh.la \
148   $(top_builddir)/src/statistics/libgnunetstatistics.la
149 gnunet_daemon_regexprofiler_DEPENDENCIES = \
150   libgnunetmesh.la
151
152 check_PROGRAMS = \
153  test_mesh_api \
154  test_mesh_tree_api \
155  test_mesh_local_1 \
156  test_mesh_local_2 \
157  test_mesh_local_traffic_fwd \
158  test_mesh_local_traffic_bck \
159  test_mesh_local_traffic_both \
160  test_mesh_2dtorus \
161  test_mesh_regex \
162  test_mesh_small_unicast \
163  test_mesh_small_multicast \
164  test_mesh_small_speed \
165  test_mesh_small_speed_nobuf \
166  test_mesh_small_speed_min \
167  test_mesh_small_speed_backwards \
168  test_mesh_small_speed_nobuf_backwards \
169  test_mesh_small_speed_min_backwards \
170  test_mesh_small_speed_ack
171
172 test_mesh_api_SOURCES = \
173  test_mesh_api.c
174 test_mesh_api_LDADD = \
175  $(top_builddir)/src/util/libgnunetutil.la \
176  $(top_builddir)/src/testing/libgnunettesting.la \
177  $(top_builddir)/src/mesh/libgnunetmesh.la
178 test_mesh_api_DEPENDENCIES = \
179   libgnunetmesh.la \
180    $(top_builddir)/src/util/libgnunetutil.la
181
182 test_mesh_tree_api_SOURCES = \
183  test_mesh_tree_api.c
184 test_mesh_tree_api_LDADD = \
185  $(top_builddir)/src/util/libgnunetutil.la \
186  $(top_builddir)/src/dht/libgnunetdht.la
187 test_mesh_tree_api_DEPENDENCIES = \
188   libgnunetmesh.la \
189   $(top_builddir)/src/dht/libgnunetdht.la
190
191 test_mesh_local_1_SOURCES = \
192  test_mesh_local_1.c
193 test_mesh_local_1_LDADD = \
194  $(top_builddir)/src/util/libgnunetutil.la \
195  $(top_builddir)/src/testing/libgnunettesting.la \
196  $(top_builddir)/src/mesh/libgnunetmesh.la
197 test_mesh_local_1_DEPENDENCIES = \
198   libgnunetmesh.la
199
200 test_mesh_local_2_SOURCES = \
201  test_mesh_local_2.c
202 test_mesh_local_2_LDADD = \
203  $(top_builddir)/src/util/libgnunetutil.la \
204  $(top_builddir)/src/testing/libgnunettesting.la \
205  $(top_builddir)/src/mesh/libgnunetmesh.la
206 test_mesh_local_2_DEPENDENCIES = \
207   libgnunetmesh.la
208
209 test_mesh_local_traffic_fwd_SOURCES = \
210  test_mesh_local_traffic.c
211 test_mesh_local_traffic_fwd_LDADD = \
212  $(top_builddir)/src/util/libgnunetutil.la \
213  $(top_builddir)/src/testing/libgnunettesting.la \
214  $(top_builddir)/src/mesh/libgnunetmesh.la
215 test_mesh_local_traffic_fwd_DEPENDENCIES = \
216   libgnunetmesh.la
217
218 test_mesh_local_traffic_bck_SOURCES = \
219  test_mesh_local_traffic.c
220 test_mesh_local_traffic_bck_LDADD = \
221  $(top_builddir)/src/util/libgnunetutil.la \
222  $(top_builddir)/src/testing/libgnunettesting.la \
223  $(top_builddir)/src/mesh/libgnunetmesh.la
224 test_mesh_local_traffic_bck_DEPENDENCIES = \
225   libgnunetmesh.la
226
227 test_mesh_local_traffic_both_SOURCES = \
228  test_mesh_local_traffic.c
229 test_mesh_local_traffic_both_LDADD = \
230  $(top_builddir)/src/util/libgnunetutil.la \
231  $(top_builddir)/src/testing/libgnunettesting.la \
232  $(top_builddir)/src/mesh/libgnunetmesh.la
233 test_mesh_local_traffic_both_DEPENDENCIES = \
234   libgnunetmesh.la
235
236
237 test_mesh_2dtorus_SOURCES = \
238  test_mesh_2dtorus.c
239 test_mesh_2dtorus_LDADD = \
240   $(top_builddir)/src/util/libgnunetutil.la \
241   $(top_builddir)/src/testing_old/libgnunettesting_old.la
242
243 test_mesh_regex_SOURCES = \
244  test_mesh_regex.c
245 test_mesh_regex_LDADD = \
246   $(top_builddir)/src/mesh/libgnunetmesh.la \
247   $(top_builddir)/src/util/libgnunetutil.la \
248   $(top_builddir)/src/testing_old/libgnunettesting_old.la
249 test_mesh_regex_DEPENDENCIES = \
250   libgnunetmesh.la
251
252
253 test_mesh_small_unicast_SOURCES = \
254  test_mesh_small.c
255 test_mesh_small_unicast_LDADD = \
256   $(top_builddir)/src/mesh/libgnunetmesh.la \
257   $(top_builddir)/src/util/libgnunetutil.la \
258   $(top_builddir)/src/testing_old/libgnunettesting_old.la
259 test_mesh_small_unicast_DEPENDENCIES = \
260   libgnunetmesh.la
261
262 test_mesh_small_multicast_SOURCES = \
263  test_mesh_small.c
264 test_mesh_small_multicast_LDADD = \
265   $(top_builddir)/src/mesh/libgnunetmesh.la \
266   $(top_builddir)/src/util/libgnunetutil.la \
267   $(top_builddir)/src/testing_old/libgnunettesting_old.la
268 test_mesh_small_multicast_DEPENDENCIES = \
269   libgnunetmesh.la
270
271 test_mesh_small_speed_ack_SOURCES = \
272  test_mesh_small.c
273 test_mesh_small_speed_ack_LDADD = \
274   $(top_builddir)/src/mesh/libgnunetmesh.la \
275   $(top_builddir)/src/util/libgnunetutil.la \
276   $(top_builddir)/src/testing_old/libgnunettesting_old.la
277 test_mesh_small_speed_ack_DEPENDENCIES = \
278   libgnunetmesh.la
279
280 test_mesh_small_speed_SOURCES = \
281  test_mesh_small.c
282 test_mesh_small_speed_LDADD = \
283   $(top_builddir)/src/mesh/libgnunetmesh.la \
284   $(top_builddir)/src/util/libgnunetutil.la \
285   $(top_builddir)/src/testing_old/libgnunettesting_old.la
286 test_mesh_small_speed_DEPENDENCIES = \
287   libgnunetmesh.la
288
289 test_mesh_small_speed_min_SOURCES = \
290  test_mesh_small.c
291 test_mesh_small_speed_min_LDADD = \
292   $(top_builddir)/src/mesh/libgnunetmesh.la \
293   $(top_builddir)/src/util/libgnunetutil.la \
294   $(top_builddir)/src/testing_old/libgnunettesting_old.la
295 test_mesh_small_speed_min_DEPENDENCIES = \
296   libgnunetmesh.la
297
298 test_mesh_small_speed_nobuf_SOURCES = \
299  test_mesh_small.c
300 test_mesh_small_speed_nobuf_LDADD = \
301   $(top_builddir)/src/mesh/libgnunetmesh.la \
302   $(top_builddir)/src/util/libgnunetutil.la \
303   $(top_builddir)/src/testing_old/libgnunettesting_old.la
304 test_mesh_small_speed_nobuf_DEPENDENCIES = \
305   libgnunetmesh.la
306
307 test_mesh_small_speed_backwards_SOURCES = \
308  test_mesh_small.c
309 test_mesh_small_speed_backwards_LDADD = \
310   $(top_builddir)/src/mesh/libgnunetmesh.la \
311   $(top_builddir)/src/util/libgnunetutil.la \
312   $(top_builddir)/src/testing_old/libgnunettesting_old.la
313 test_mesh_small_speed_backwards_DEPENDENCIES = \
314   libgnunetmesh.la
315
316 test_mesh_small_speed_min_backwards_SOURCES = \
317  test_mesh_small.c
318 test_mesh_small_speed_min_backwards_LDADD = \
319   $(top_builddir)/src/mesh/libgnunetmesh.la \
320   $(top_builddir)/src/util/libgnunetutil.la \
321   $(top_builddir)/src/testing_old/libgnunettesting_old.la
322 test_mesh_small_speed_min_backwards_DEPENDENCIES = \
323   libgnunetmesh.la
324
325 test_mesh_small_speed_nobuf_backwards_SOURCES = \
326  test_mesh_small.c
327 test_mesh_small_speed_nobuf_backwards_LDADD = \
328   $(top_builddir)/src/mesh/libgnunetmesh.la \
329   $(top_builddir)/src/util/libgnunetutil.la \
330   $(top_builddir)/src/testing_old/libgnunettesting_old.la
331 test_mesh_small_speed_nobuf_backwards_DEPENDENCIES = \
332   libgnunetmesh.la
333
334
335 if ENABLE_TEST_RUN
336 TESTS = test_mesh_api \
337  test_mesh_tree_api \
338  test_mesh_local_1 test_mesh_local_2 \
339  test_mesh_local_traffic_fwd \
340  test_mesh_local_traffic_bck \
341  test_mesh_local_traffic_both \
342  test_mesh_2dtorus test_mesh_regex \
343  test_mesh_small_unicast test_mesh_small_multicast \
344  test_mesh_small_speed \
345  test_mesh_small_speed_min \
346  test_mesh_small_speed_nobuf \
347  test_mesh_small_speed_backwards \
348  test_mesh_small_speed_min_backwards
349 endif
350
351 EXTRA_DIST = \
352   mesh.h mesh_protocol.h \
353   test_mesh.conf \
354   test_mesh_2dtorus.conf \
355   test_mesh_small.conf