- more regex in mesh
[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  gnunet-service-mesh_new
23
24 lib_LTLIBRARIES = \
25   libgnunetmesh.la
26
27 plugin_LTLIBRARIES = \
28  libgnunet_plugin_block_mesh.la
29
30 libgnunet_plugin_block_mesh_la_SOURCES = \
31  plugin_block_mesh.c
32 libgnunet_plugin_block_mesh_la_LIBADD = \
33  $(top_builddir)/src/block/libgnunetblock.la \
34  $(top_builddir)/src/util/libgnunetutil.la
35 libgnunet_plugin_block_mesh_la_LDFLAGS = \
36  $(GN_PLUGIN_LDFLAGS)
37 libgnunet_plugin_block_mesh_la_DEPENDENCIES = \
38  $(top_builddir)/src/block/libgnunetblock.la
39
40
41 gnunet_service_mesh_SOURCES = \
42  gnunet-service-mesh.c \
43  mesh_tunnel_tree.c mesh_tunnel_tree.h
44 gnunet_service_mesh_LDADD = \
45   $(top_builddir)/src/core/libgnunetcore.la \
46   $(top_builddir)/src/dht/libgnunetdht.la \
47   $(top_builddir)/src/block/libgnunetblock.la \
48   $(top_builddir)/src/util/libgnunetutil.la
49  gnunet_service_mesh_DEPENDENCIES = \
50   $(top_builddir)/src/core/libgnunetcore.la\
51   $(top_builddir)/src/dht/libgnunetdht.la \
52   $(top_builddir)/src/util/libgnunetutil.la
53
54 gnunet_service_mesh_new_SOURCES = \
55  gnunet-service-mesh_new.c \
56  mesh_tunnel_tree.c mesh_tunnel_tree.h
57 gnunet_service_mesh_new_LDADD = \
58   $(top_builddir)/src/core/libgnunetcore.la\
59   $(top_builddir)/src/dht/libgnunetdht.la \
60   $(top_builddir)/src/regex/libgnunetregex.la \
61   $(top_builddir)/src/util/libgnunetutil.la
62  gnunet_service_mesh_new_DEPENDENCIES = \
63   $(top_builddir)/src/core/libgnunetcore.la\
64   $(top_builddir)/src/dht/libgnunetdht.la \
65   $(top_builddir)/src/util/libgnunetutil.la
66
67 libgnunetmesh_la_SOURCES = \
68   mesh_api.c mesh.h mesh_protocol.h
69 libgnunetmesh_la_LIBADD = \
70   $(top_builddir)/src/util/libgnunetutil.la \
71   $(XLIB) \
72   $(LTLIBINTL)
73 libgnunetmesh_la_LDFLAGS = \
74   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
75   -version-info 1:0:0
76
77 check_PROGRAMS = \
78  test_mesh_api \
79  test_mesh_tree_api \
80  test_mesh_local_1 \
81  test_mesh_local_2 \
82  test_mesh_2dtorus \
83  test_mesh_small_unicast \
84  test_mesh_small_multicast \
85  test_mesh_small_speed \
86  test_mesh_small_speed_ack
87
88 test_mesh_api_SOURCES = \
89  test_mesh_api.c
90 test_mesh_api_LDADD = \
91  $(top_builddir)/src/util/libgnunetutil.la \
92  $(top_builddir)/src/mesh/libgnunetmesh.la
93 test_mesh_api_DEPENDENCIES = \
94   libgnunetmesh.la \
95    $(top_builddir)/src/util/libgnunetutil.la
96
97 test_mesh_tree_api_SOURCES = \
98  test_mesh_tree_api.c
99 test_mesh_tree_api_LDADD = \
100  $(top_builddir)/src/util/libgnunetutil.la \
101   $(top_builddir)/src/dht/libgnunetdht.la
102 test_mesh_tree_api_DEPENDENCIES = \
103   libgnunetmesh.la \
104   $(top_builddir)/src/dht/libgnunetdht.la
105
106 test_mesh_local_1_SOURCES = \
107  test_mesh_local_1.c
108 test_mesh_local_1_LDADD = \
109  $(top_builddir)/src/util/libgnunetutil.la \
110  $(top_builddir)/src/mesh/libgnunetmesh.la
111 test_mesh_local_1_DEPENDENCIES = \
112   libgnunetmesh.la
113
114 test_mesh_local_2_SOURCES = \
115  test_mesh_local_2.c
116 test_mesh_local_2_LDADD = \
117  $(top_builddir)/src/util/libgnunetutil.la \
118  $(top_builddir)/src/mesh/libgnunetmesh.la
119 test_mesh_local_2_DEPENDENCIES = \
120   libgnunetmesh.la
121
122 test_mesh_2dtorus_SOURCES = \
123  test_mesh_2dtorus.c
124 test_mesh_2dtorus_LDADD = \
125   $(top_builddir)/src/util/libgnunetutil.la \
126   $(top_builddir)/src/testing_old/libgnunettesting_old.la
127
128 test_mesh_small_unicast_SOURCES = \
129  test_mesh_small.c
130 test_mesh_small_unicast_LDADD = \
131   $(top_builddir)/src/mesh/libgnunetmesh.la \
132   $(top_builddir)/src/util/libgnunetutil.la \
133   $(top_builddir)/src/testing_old/libgnunettesting_old.la
134 test_mesh_small_unicast_DEPENDENCIES = \
135   libgnunetmesh.la
136
137 test_mesh_small_multicast_SOURCES = \
138  test_mesh_small.c
139 test_mesh_small_multicast_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_small_multicast_DEPENDENCIES = \
144   libgnunetmesh.la
145
146 test_mesh_small_speed_SOURCES = \
147  test_mesh_small.c
148 test_mesh_small_speed_LDADD = \
149   $(top_builddir)/src/mesh/libgnunetmesh.la \
150   $(top_builddir)/src/util/libgnunetutil.la \
151   $(top_builddir)/src/testing_old/libgnunettesting_old.la
152 test_mesh_small_speed_DEPENDENCIES = \
153   libgnunetmesh.la
154
155 test_mesh_small_speed_ack_SOURCES = \
156  test_mesh_small.c
157 test_mesh_small_speed_ack_LDADD = \
158   $(top_builddir)/src/mesh/libgnunetmesh.la \
159   $(top_builddir)/src/util/libgnunetutil.la \
160   $(top_builddir)/src/testing_old/libgnunettesting_old.la
161 test_mesh_small_speed_ack_DEPENDENCIES = \
162   libgnunetmesh.la
163
164 if ENABLE_TEST_RUN
165 TESTS = test_mesh_api test_mesh_tree_api test_mesh_local_1 test_mesh_local_2 \
166  test_mesh_2dtorus test_mesh_small_unicast test_mesh_small_multicast
167 endif
168
169 EXTRA_DIST = \
170   test_mesh.conf \
171   test_mesh_2dtorus.conf \
172   test_mesh_small.conf \
173   test_mesh_path.conf