aboutsummaryrefslogtreecommitdiff
path: root/src/dht/Makefile.am
blob: 982c33815b7ac53e28131823c3e9a928bff248c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
INCLUDES = -I$(top_srcdir)/src/include
if MINGW
 WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols -lole32 -lshell32 -liconv -lstdc++ -lcomdlg32 -lgdi32
endif

plugindir = $(libdir)/gnunet

pkgcfgdir= $(pkgdatadir)/config.d/

libexecdir= $(pkglibdir)/libexec/

pkgcfg_DATA = \
  dht.conf 

if HAVE_ZLIB
 ZLIB_LNK = -lz
endif

if USE_COVERAGE
  AM_CFLAGS = --coverage -O0
  XLIB = -lgcov
endif

lib_LTLIBRARIES = \
 libgnunetdht.la 

libgnunetdht_la_SOURCES = \
  dht_api.c dht.h 
libgnunetdht_la_LIBADD = \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(XLIB) \
  $(LTLIBINTL)
libgnunetdht_la_LDFLAGS = \
  $(GN_LIB_LDFLAGS) $(WINFLAGS) \
  -version-info 1:0:1


plugin_LTLIBRARIES = \
  libgnunet_plugin_block_dht.la 

libgnunet_plugin_block_dht_la_SOURCES = \
  plugin_block_dht.c
libgnunet_plugin_block_dht_la_LIBADD = \
  $(top_builddir)/src/hello/libgnunethello.la \
  $(top_builddir)/src/block/libgnunetblock.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  $(LTLIBINTL)
libgnunet_plugin_block_dht_la_LDFLAGS = \
 $(GN_PLUGIN_LDFLAGS)
libgnunet_plugin_block_dht_la_DEPENDENCIES = \
  $(top_builddir)/src/block/libgnunetblock.la 



libexec_PROGRAMS = \
 gnunet-service-dht 

noinst_PROGRAMS = \
 gnunet-dht-monitor \
 gnunet-dht-get \
 gnunet-dht-put

gnunet_service_dht_SOURCES = \
 gnunet-service-dht.c gnunet-service-dht.h \
 gnunet-service-dht_clients.c gnunet-service-dht_clients.h \
 gnunet-service-dht_datacache.c gnunet-service-dht_datacache.h \
 gnunet-service-dht_hello.c gnunet-service-dht_hello.h \
 gnunet-service-dht_nse.c gnunet-service-dht_nse.h \
 gnunet-service-dht_neighbours.c gnunet-service-dht_neighbours.h \
 gnunet-service-dht_routing.c gnunet-service-dht_routing.h 
gnunet_service_dht_LDADD = \
  $(top_builddir)/src/statistics/libgnunetstatistics.la \
  $(top_builddir)/src/core/libgnunetcore.la \
  $(top_builddir)/src/nse/libgnunetnse.la \
  $(top_builddir)/src/ats/libgnunetats.la \
  $(top_builddir)/src/transport/libgnunettransport.la \
  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
  $(top_builddir)/src/hello/libgnunethello.la \
  $(top_builddir)/src/block/libgnunetblock.la \
  $(top_builddir)/src/datacache/libgnunetdatacache.la \
  $(top_builddir)/src/util/libgnunetutil.la \
  -lm

gnunet_dht_get_SOURCES = \
 gnunet-dht-get.c         
gnunet_dht_get_LDADD = \
  $(top_builddir)/src/dht/libgnunetdht.la \
  $(top_builddir)/src/core/libgnunetcore.la \
  $(top_builddir)/src/util/libgnunetutil.la 
gnunet_dht_get_DEPENDENCIES = \
  libgnunetdht.la			      

gnunet_dht_put_SOURCES = \
 gnunet-dht-put.c         
gnunet_dht_put_LDADD = \
  $(top_builddir)/src/dht/libgnunetdht.la \
  $(top_builddir)/src/core/libgnunetcore.la \
  $(top_builddir)/src/util/libgnunetutil.la 
gnunet_dht_put_DEPENDENCIES = \
  libgnunetdht.la			      

gnunet_dht_monitor_SOURCES = \
 gnunet-dht-monitor.c         
gnunet_dht_monitor_LDADD = \
  $(top_builddir)/src/dht/libgnunetdht.la \
  $(top_builddir)/src/core/libgnunetcore.la \
  $(top_builddir)/src/util/libgnunetutil.la 
gnunet_dht_monitor_DEPENDENCIES = \
  libgnunetdht.la			      


noinst_LIBRARIES = libgnunetdhttest.a

libgnunetdhttest_a_SOURCES = \
  dht_test_lib.c dht_test_lib.h
libgnunetdhttest_a_LIBADD = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testbed/libgnunettestbed.la \
 $(top_builddir)/src/dht/libgnunetdht.la
libgnunetdhttest_a_DEPENDENCIES = \
  libgnunetdht.la   

check_PROGRAMS = \
 test_dht_api \
 test_dht_twopeer \
 test_dht_twopeer_put_get \
 test_dht_twopeer_get_put \
 test_dht_twopeer_path_tracking \
 test_dht_multipeer \
 test_dht_line \
 test_dht_2dtorus \
 test_dht_monitor

if HAVE_EXPERIMENTAL
 NEW_TESTS = test_dht_line test_dht_2dtorus
endif

if ENABLE_TEST_RUN
TESTS = test_dht_api $(check_SCRIPTS) \
 test_dht_twopeer \
 test_dht_twopeer_put_get \
 test_dht_twopeer_get_put \
 test_dht_twopeer_path_tracking \
 test_dht_multipeer \
 $(NEW_TESTS) \
 test_dht_monitor
endif

test_dht_api_SOURCES = \
 test_dht_api.c
test_dht_api_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing/libgnunettesting.la \
 $(top_builddir)/src/hello/libgnunethello.la \
 $(top_builddir)/src/dht/libgnunetdht.la
test_dht_api_DEPENDENCIES = \
  libgnunetdht.la			    

# twopeer is obsolete once new test_dht_topo works...
test_dht_twopeer_SOURCES = \
 test_dht_twopeer.c
test_dht_twopeer_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing_old/libgnunettesting_old.la \
 $(top_builddir)/src/dht/libgnunetdht.la    
test_dht_twopeer_DEPENDENCIES = \
  libgnunetdht.la			    

# twopeer_put_get is obsolete once new test_dht_topo works...
test_dht_twopeer_put_get_SOURCES = \
 test_dht_twopeer_put_get.c
test_dht_twopeer_put_get_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing_old/libgnunettesting_old.la \
 $(top_builddir)/src/dht/libgnunetdht.la   

# twopeer_get_put is obsolete once new test_dht_topo works...
test_dht_twopeer_get_put_SOURCES = \
 test_dht_twopeer_get_put.c
test_dht_twopeer_get_put_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing_old/libgnunettesting_old.la \
 $(top_builddir)/src/dht/libgnunetdht.la   

# twopeer_path_tracking is obsolete once new test_dht_topo works...
test_dht_twopeer_path_tracking_SOURCES = \
 test_dht_twopeer_path_tracking.c
test_dht_twopeer_path_tracking_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing_old/libgnunettesting_old.la \
 $(top_builddir)/src/dht/libgnunetdht.la   

# statistics functions should be integrated with test_dht_topo,
# then this one also becomes obsolete...
test_dht_multipeer_SOURCES = \
 test_dht_multipeer.c
test_dht_multipeer_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/statistics/libgnunetstatistics.la \
 $(top_builddir)/src/testing_old/libgnunettesting_old.la \
 $(top_builddir)/src/dht/libgnunetdht.la  
test_dht_multipeer_DEPENDENCIES = \
  libgnunetdht.la			    

test_dht_2dtorus_SOURCES = \
 test_dht_topo.c
test_dht_2dtorus_LDADD = \
 $(top_builddir)/src/dht/libgnunetdhttest.a \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testbed/libgnunettestbed.la \
 $(top_builddir)/src/dht/libgnunetdht.la
test_dht_2dtorus_DEPENDENCIES = \
  libgnunetdht.la

test_dht_line_SOURCES = \
 test_dht_topo.c
test_dht_line_LDADD = \
 $(top_builddir)/src/dht/libgnunetdhttest.a \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testbed/libgnunettestbed.la \
 $(top_builddir)/src/dht/libgnunetdht.la 
test_dht_line_DEPENDENCIES = \
  libgnunetdht.la

# fixme, rewrite based on test_dht_topo.c!
test_dht_monitor_SOURCES = test_dht_monitor.c
test_dht_monitor_LDADD = \
 $(top_builddir)/src/util/libgnunetutil.la \
 $(top_builddir)/src/testing_old/libgnunettesting_old.la \
 $(top_builddir)/src/dht/libgnunetdht.la
test_dht_monitor_DEPENDENCIES = \
  libgnunetdht.la

EXTRA_DIST = \
  $(check_SCRIPTS) \
  test_dht_api_data.conf \
  test_dht_api_peer1.conf \
  test_dht_twopeer_data.conf \
  test_dht_multipeer_data.conf \
  test_dht_2dtorus.conf \
  test_dht_line.conf \
  test_dht_tools.py.in \
  multipeer_topo.dat

check_SCRIPTS = \
  test_dht_tools.py

do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'

%.py: %.py.in Makefile
	$(do_subst) < $(srcdir)/$< > $@
	chmod +x $@

test_dht_tools.py: test_dht_tools.py.in Makefile
	$(do_subst) < $(srcdir)/test_dht_tools.py.in > test_dht_tools.py
	chmod +x test_dht_tools.py