- try to fix compilation on Windows
[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  $(top_builddir)/src/mesh/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.h mesh_protocol.h
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 mesh_tunnel_tree.h
67 gnunet_service_mesh_LDADD = \
68   $(top_builddir)/src/util/libgnunetutil.la \
69   $(top_builddir)/src/core/libgnunetcore.la \
70   $(top_builddir)/src/dht/libgnunetdht.la \
71   $(top_builddir)/src/block/libgnunetblock.la \
72   $(top_builddir)/src/mesh/libgnunetmeshblock.la \
73   $(top_builddir)/src/regex/libgnunetregex.la
74 gnunet_service_mesh_DEPENDENCIES = \
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/block/libgnunetblock.la \
79   $(top_builddir)/src/mesh/libgnunetmeshblock.la \
80   $(top_builddir)/src/regex/libgnunetregex.la
81
82 check_PROGRAMS = \
83  test_mesh_api \
84  test_mesh_tree_api \
85  test_mesh_local_1 \
86  test_mesh_local_2 \
87  test_mesh_2dtorus \
88  test_mesh_regex \
89  test_mesh_small_unicast \
90  test_mesh_small_multicast \
91  test_mesh_small_speed \
92  test_mesh_small_speed_ack
93
94 test_mesh_api_SOURCES = \
95  test_mesh_api.c
96 test_mesh_api_LDADD = \
97  $(top_builddir)/src/util/libgnunetutil.la \
98  $(top_builddir)/src/testing/libgnunettesting.la \
99  $(top_builddir)/src/mesh/libgnunetmesh.la
100 test_mesh_api_DEPENDENCIES = \
101   libgnunetmesh.la \
102    $(top_builddir)/src/util/libgnunetutil.la
103
104 test_mesh_tree_api_SOURCES = \
105  test_mesh_tree_api.c
106 test_mesh_tree_api_LDADD = \
107  $(top_builddir)/src/util/libgnunetutil.la \
108  $(top_builddir)/src/dht/libgnunetdht.la
109 test_mesh_tree_api_DEPENDENCIES = \
110   libgnunetmesh.la \
111   $(top_builddir)/src/dht/libgnunetdht.la
112
113 test_mesh_local_1_SOURCES = \
114  test_mesh_local_1.c
115 test_mesh_local_1_LDADD = \
116  $(top_builddir)/src/util/libgnunetutil.la \
117  $(top_builddir)/src/testing/libgnunettesting.la \
118  $(top_builddir)/src/mesh/libgnunetmesh.la
119 test_mesh_local_1_DEPENDENCIES = \
120   libgnunetmesh.la
121
122 test_mesh_local_2_SOURCES = \
123  test_mesh_local_2.c
124 test_mesh_local_2_LDADD = \
125  $(top_builddir)/src/util/libgnunetutil.la \
126  $(top_builddir)/src/testing/libgnunettesting.la \
127  $(top_builddir)/src/mesh/libgnunetmesh.la
128 test_mesh_local_2_DEPENDENCIES = \
129   libgnunetmesh.la
130
131 test_mesh_2dtorus_SOURCES = \
132  test_mesh_2dtorus.c
133 test_mesh_2dtorus_LDADD = \
134   $(top_builddir)/src/util/libgnunetutil.la \
135   $(top_builddir)/src/testing_old/libgnunettesting_old.la
136
137 test_mesh_regex_SOURCES = \
138  test_mesh_regex.c
139 test_mesh_regex_LDADD = \
140   $(top_builddir)/src/mesh/libgnunetmesh.la \
141   $(top_builddir)/src/util/libgnunetutil.la \
142   $(top_builddir)/src/testing_old/libgnunettesting_old.la
143 test_mesh_regex_DEPENDENCIES = \
144   libgnunetmesh.la
145
146
147 test_mesh_small_unicast_SOURCES = \
148  test_mesh_small.c
149 test_mesh_small_unicast_LDADD = \
150   $(top_builddir)/src/mesh/libgnunetmesh.la \
151   $(top_builddir)/src/util/libgnunetutil.la \
152   $(top_builddir)/src/testing_old/libgnunettesting_old.la
153 test_mesh_small_unicast_DEPENDENCIES = \
154   libgnunetmesh.la
155
156 test_mesh_small_multicast_SOURCES = \
157  test_mesh_small.c
158 test_mesh_small_multicast_LDADD = \
159   $(top_builddir)/src/mesh/libgnunetmesh.la \
160   $(top_builddir)/src/util/libgnunetutil.la \
161   $(top_builddir)/src/testing_old/libgnunettesting_old.la
162 test_mesh_small_multicast_DEPENDENCIES = \
163   libgnunetmesh.la
164
165 test_mesh_small_speed_SOURCES = \
166  test_mesh_small.c
167 test_mesh_small_speed_LDADD = \
168   $(top_builddir)/src/mesh/libgnunetmesh.la \
169   $(top_builddir)/src/util/libgnunetutil.la \
170   $(top_builddir)/src/testing_old/libgnunettesting_old.la
171 test_mesh_small_speed_DEPENDENCIES = \
172   libgnunetmesh.la
173
174 test_mesh_small_speed_ack_SOURCES = \
175  test_mesh_small.c
176 test_mesh_small_speed_ack_LDADD = \
177   $(top_builddir)/src/mesh/libgnunetmesh.la \
178   $(top_builddir)/src/util/libgnunetutil.la \
179   $(top_builddir)/src/testing_old/libgnunettesting_old.la
180 test_mesh_small_speed_ack_DEPENDENCIES = \
181   libgnunetmesh.la
182
183 if ENABLE_TEST_RUN
184 TESTS = test_mesh_api \
185  test_mesh_tree_api \
186  test_mesh_local_1 test_mesh_local_2 \
187  test_mesh_2dtorus test_mesh_regex \
188  test_mesh_small_unicast test_mesh_small_multicast
189 endif
190
191 EXTRA_DIST = \
192   test_mesh.conf \
193   test_mesh_2dtorus.conf \
194   test_mesh_small.conf \
195   test_mesh_path.conf