- Remove deprecated code, coverity 10236
[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 pkgcfg_DATA = \
15   mesh.conf
16
17 plugindir = $(libdir)/gnunet
18
19 AM_CLFAGS = -g
20
21 bin_PROGRAMS = \
22  gnunet-service-mesh
23
24 lib_LTLIBRARIES = \
25   libgnunetmesh.la \
26   libgnunetmeshblock.la
27
28 plugin_LTLIBRARIES = \
29  libgnunet_plugin_block_mesh.la
30
31 libgnunet_plugin_block_mesh_la_SOURCES = \
32  plugin_block_mesh.c
33 libgnunet_plugin_block_mesh_la_LIBADD = \
34  $(top_builddir)/src/mesh/libgnunetmeshblock.la \
35  $(top_builddir)/src/block/libgnunetblock.la \
36  $(top_builddir)/src/util/libgnunetutil.la
37 libgnunet_plugin_block_mesh_la_LDFLAGS = \
38  $(GN_PLUGIN_LDFLAGS)
39 libgnunet_plugin_block_mesh_la_DEPENDENCIES = \
40  libgnunetmeshblock.la \
41  $(top_builddir)/src/block/libgnunetblock.la \
42  $(top_builddir)/src/util/libgnunetutil.la
43
44 libgnunetmesh_la_SOURCES = \
45   mesh_api.c mesh_common.c
46 libgnunetmesh_la_LIBADD = \
47   $(top_builddir)/src/util/libgnunetutil.la \
48   $(XLIB) \
49   $(LTLIBINTL)
50 libgnunetmesh_la_LDFLAGS = \
51   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
52   -version-info 1:0:0
53
54 libgnunetmeshblock_la_SOURCES = \
55   mesh_block_lib.c
56 libgnunetmeshblock_la_LIBADD = \
57   $(top_builddir)/src/util/libgnunetutil.la \
58   $(XLIB) \
59   $(LTLIBINTL)
60 libgnunetmeshblock_la_LDFLAGS = \
61   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
62   -version-info 1:0:0
63
64 gnunet_service_mesh_SOURCES = \
65  gnunet-service-mesh.c \
66  mesh_tunnel_tree.c \
67  mesh_common.c
68 gnunet_service_mesh_CFLAGS = $(AM_CFLAGS)
69 gnunet_service_mesh_LDADD = \
70   $(top_builddir)/src/util/libgnunetutil.la \
71   $(top_builddir)/src/core/libgnunetcore.la \
72   $(top_builddir)/src/dht/libgnunetdht.la \
73   $(top_builddir)/src/statistics/libgnunetstatistics.la \
74   $(top_builddir)/src/block/libgnunetblock.la \
75   $(top_builddir)/src/mesh/libgnunetmeshblock.la \
76   $(top_builddir)/src/regex/libgnunetregex.la
77 gnunet_service_mesh_DEPENDENCIES = \
78   $(top_builddir)/src/util/libgnunetutil.la \
79   $(top_builddir)/src/core/libgnunetcore.la \
80   $(top_builddir)/src/dht/libgnunetdht.la \
81   $(top_builddir)/src/statistics/libgnunetstatistics.la \
82   $(top_builddir)/src/block/libgnunetblock.la \
83   libgnunetmeshblock.la \
84   $(top_builddir)/src/regex/libgnunetregex.la
85 if LINUX
86 gnunet_service_mesh_LDFLAGS = -lrt
87 endif
88
89 check_PROGRAMS = \
90  test_mesh_api \
91  test_mesh_tree_api \
92  test_mesh_local_1 \
93  test_mesh_local_2 \
94  test_mesh_local_traffic_fwd \
95  test_mesh_local_traffic_bck \
96  test_mesh_local_traffic_both \
97  test_mesh_2dtorus \
98  test_mesh_regex \
99  test_mesh_small_unicast \
100  test_mesh_small_multicast \
101  test_mesh_small_speed \
102  test_mesh_small_speed_ack
103
104 test_mesh_api_SOURCES = \
105  test_mesh_api.c
106 test_mesh_api_LDADD = \
107  $(top_builddir)/src/util/libgnunetutil.la \
108  $(top_builddir)/src/testing/libgnunettesting.la \
109  $(top_builddir)/src/mesh/libgnunetmesh.la
110 test_mesh_api_DEPENDENCIES = \
111   libgnunetmesh.la \
112    $(top_builddir)/src/util/libgnunetutil.la
113
114 test_mesh_tree_api_SOURCES = \
115  test_mesh_tree_api.c
116 test_mesh_tree_api_LDADD = \
117  $(top_builddir)/src/util/libgnunetutil.la \
118  $(top_builddir)/src/dht/libgnunetdht.la
119 test_mesh_tree_api_DEPENDENCIES = \
120   libgnunetmesh.la \
121   $(top_builddir)/src/dht/libgnunetdht.la
122
123 test_mesh_local_1_SOURCES = \
124  test_mesh_local_1.c
125 test_mesh_local_1_LDADD = \
126  $(top_builddir)/src/util/libgnunetutil.la \
127  $(top_builddir)/src/testing/libgnunettesting.la \
128  $(top_builddir)/src/mesh/libgnunetmesh.la
129 test_mesh_local_1_DEPENDENCIES = \
130   libgnunetmesh.la
131
132 test_mesh_local_2_SOURCES = \
133  test_mesh_local_2.c
134 test_mesh_local_2_LDADD = \
135  $(top_builddir)/src/util/libgnunetutil.la \
136  $(top_builddir)/src/testing/libgnunettesting.la \
137  $(top_builddir)/src/mesh/libgnunetmesh.la
138 test_mesh_local_2_DEPENDENCIES = \
139   libgnunetmesh.la
140
141 test_mesh_local_traffic_fwd_SOURCES = \
142  test_mesh_local_traffic.c
143 test_mesh_local_traffic_fwd_LDADD = \
144  $(top_builddir)/src/util/libgnunetutil.la \
145  $(top_builddir)/src/testing/libgnunettesting.la \
146  $(top_builddir)/src/mesh/libgnunetmesh.la
147 test_mesh_local_traffic_fwd_DEPENDENCIES = \
148   libgnunetmesh.la
149
150 test_mesh_local_traffic_bck_SOURCES = \
151  test_mesh_local_traffic.c
152 test_mesh_local_traffic_bck_LDADD = \
153  $(top_builddir)/src/util/libgnunetutil.la \
154  $(top_builddir)/src/testing/libgnunettesting.la \
155  $(top_builddir)/src/mesh/libgnunetmesh.la
156 test_mesh_local_traffic_bck_DEPENDENCIES = \
157   libgnunetmesh.la
158
159 test_mesh_local_traffic_both_SOURCES = \
160  test_mesh_local_traffic.c
161 test_mesh_local_traffic_both_LDADD = \
162  $(top_builddir)/src/util/libgnunetutil.la \
163  $(top_builddir)/src/testing/libgnunettesting.la \
164  $(top_builddir)/src/mesh/libgnunetmesh.la
165 test_mesh_local_traffic_both_DEPENDENCIES = \
166   libgnunetmesh.la
167
168
169 test_mesh_2dtorus_SOURCES = \
170  test_mesh_2dtorus.c
171 test_mesh_2dtorus_LDADD = \
172   $(top_builddir)/src/util/libgnunetutil.la \
173   $(top_builddir)/src/testing_old/libgnunettesting_old.la
174
175 test_mesh_regex_SOURCES = \
176  test_mesh_regex.c
177 test_mesh_regex_LDADD = \
178   $(top_builddir)/src/mesh/libgnunetmesh.la \
179   $(top_builddir)/src/util/libgnunetutil.la \
180   $(top_builddir)/src/testing_old/libgnunettesting_old.la
181 test_mesh_regex_DEPENDENCIES = \
182   libgnunetmesh.la
183
184
185 test_mesh_small_unicast_SOURCES = \
186  test_mesh_small.c
187 test_mesh_small_unicast_LDADD = \
188   $(top_builddir)/src/mesh/libgnunetmesh.la \
189   $(top_builddir)/src/util/libgnunetutil.la \
190   $(top_builddir)/src/testing_old/libgnunettesting_old.la
191 test_mesh_small_unicast_DEPENDENCIES = \
192   libgnunetmesh.la
193
194 test_mesh_small_multicast_SOURCES = \
195  test_mesh_small.c
196 test_mesh_small_multicast_LDADD = \
197   $(top_builddir)/src/mesh/libgnunetmesh.la \
198   $(top_builddir)/src/util/libgnunetutil.la \
199   $(top_builddir)/src/testing_old/libgnunettesting_old.la
200 test_mesh_small_multicast_DEPENDENCIES = \
201   libgnunetmesh.la
202
203 test_mesh_small_speed_SOURCES = \
204  test_mesh_small.c
205 test_mesh_small_speed_LDADD = \
206   $(top_builddir)/src/mesh/libgnunetmesh.la \
207   $(top_builddir)/src/util/libgnunetutil.la \
208   $(top_builddir)/src/testing_old/libgnunettesting_old.la
209 test_mesh_small_speed_DEPENDENCIES = \
210   libgnunetmesh.la
211
212 test_mesh_small_speed_ack_SOURCES = \
213  test_mesh_small.c
214 test_mesh_small_speed_ack_LDADD = \
215   $(top_builddir)/src/mesh/libgnunetmesh.la \
216   $(top_builddir)/src/util/libgnunetutil.la \
217   $(top_builddir)/src/testing_old/libgnunettesting_old.la
218 test_mesh_small_speed_ack_DEPENDENCIES = \
219   libgnunetmesh.la
220
221 if ENABLE_TEST_RUN
222 TESTS = test_mesh_api \
223  test_mesh_tree_api \
224  test_mesh_local_1 test_mesh_local_2 \
225  test_mesh_local_traffic_fwd \
226  test_mesh_local_traffic_bck \
227  test_mesh_local_traffic_both \
228  test_mesh_2dtorus test_mesh_regex \
229  test_mesh_small_unicast test_mesh_small_multicast \
230  test_mesh_small_speed
231 endif
232
233 EXTRA_DIST = \
234   test_mesh.conf \
235   test_mesh_2dtorus.conf \
236   test_mesh_small.conf \
237   test_mesh_path.conf