71a54d83f538bd4a08e33e8ce55ad7c92bf31ff9
[oweals/gnunet.git] / src / transport / Makefile.am
1 AM_CPPFLAGS = -I$(top_srcdir)/src/include -I$(top_builddir)/src/include
2
3 plugindir = $(libdir)/gnunet
4
5 pkgcfgdir= $(pkgdatadir)/config.d/
6
7 libexecdir= $(pkglibdir)/libexec/
8
9 pkgcfg_DATA = \
10   transport.conf
11
12
13 if HAVE_MHD
14  GN_LIBMHD = -lmicrohttpd
15  HTTP_SERVER_PLUGIN_LA = libgnunet_plugin_transport_http_server.la
16  HTTPS_SERVER_PLUGIN_LA = libgnunet_plugin_transport_https_server.la
17  HTTP_SERVER_PLUGIN_TEST = test_plugin_http_server
18  HTTPS_SERVER_PLUGIN_TEST = test_plugin_https_server
19 endif
20
21 if HAVE_LIBCURL
22  HTTP_CLIENT_PLUGIN_TEST = test_plugin_http_client
23  HTTPS_CLIENT_PLUGIN_TEST = test_plugin_https_client
24  HTTP_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_http_client.la
25  HTTPS_CLIENT_PLUGIN_LA = libgnunet_plugin_transport_https_client.la
26 endif
27
28 if HAVE_MHD 
29 if HAVE_LIBCURL
30  HTTP_API_TEST = test_transport_api_http
31  HTTP_REVERSE_API_TEST = test_transport_api_http_reverse
32  HTTP_API_TIMEOUT_TEST = test_transport_api_timeout_http
33  HTTP_REL_TEST = test_transport_api_reliability_http
34  HTTP_QUOTA_TEST = test_quota_compliance_http \
35                    test_quota_compliance_http_asymmetric
36  HTTPS_API_TEST = test_transport_api_https
37  HTTPS_API_TIMEOUT_TEST = test_transport_api_timeout_https
38  HTTPS_REL_TEST = test_transport_api_reliability_https
39  HTTPS_QUOTA_TEST = test_quota_compliance_https \
40                 test_quota_compliance_https_asymmetric 
41 endif
42 endif 
43
44 if USE_COVERAGE
45   AM_CFLAGS = --coverage -O0
46 endif
47
48 if LINUX
49  WLAN_BIN = gnunet-helper-transport-wlan
50  WLAN_BIN_DUMMY = gnunet-helper-transport-wlan-dummy
51  WLAN_BIN_SENDER = gnunet-transport-wlan-sender
52  WLAN_BIN_RECEIVER = gnunet-transport-wlan-receiver
53  WLAN_PLUGIN_LA = libgnunet_plugin_transport_wlan.la
54  WLAN_PLUGIN_TEST = test_plugin_wlan
55  WLAN_API_TEST = test_transport_api_wlan
56  WLAN_REL_TEST = test_transport_api_reliability_wlan
57  WLAN_UREL_TEST = test_transport_api_unreliability_wlan
58  WLAN_QUOTA_TEST = test_quota_compliance_wlan \
59                 test_quota_compliance_wlan_asymmetric
60 endif
61
62 if LINUX
63 install-exec-hook:
64         $(top_srcdir)/src/transport/install-wlan-helper.sh $(libexecdir) $(SUDO_BINARY) || true
65 else
66 install-exec-hook:
67 endif
68
69 if LINUX
70 if HAVE_LIBBLUETOOTH
71  BT_BIN = gnunet-helper-transport-bluetooth
72  BT_PLUGIN_LA = libgnunet_plugin_transport_bluetooth.la
73  BT_PLUGIN_TEST = test_plugin_bluetooth
74  BT_API_TEST = test_transport_api_bluetooth
75  BT_REL_TEST = test_transport_api_reliability_bluetooth
76  BT_UREL_TEST = test_transport_api_unreliability_bluetooth
77  BT_QUOTA_TEST = test_quota_compliance_bluetooth \
78     test_quota_compliance_bluetooth_asymmetric
79 endif
80 else
81 if MINGW
82  BT_BIN = gnunet-helper-transport-bluetooth
83  BT_PLUGIN_LA = libgnunet_plugin_transport_bluetooth.la
84  BT_PLUGIN_TEST = test_plugin_bluetooth
85 endif
86 endif
87
88 if LINUX
89 if HAVE_LIBBLUETOOTH
90 install-exec-hook2:
91         $(top_srcdir)/src/transport/install-bluetooth-helper.sh $(libexecdir) $(SUDO_BINARY) || true
92 endif
93 else
94 install-exec-hook2:
95 endif
96
97 if !MINGW
98 UNIX_PLUGIN_LA = libgnunet_plugin_transport_unix.la
99 UNIX_PLUGIN_TEST = test_transport_api_unix 
100 UNIX_TEST = test_plugin_unix
101 UNIX_PLUGIN_TIMEOUT_TEST = test_transport_api_timeout_unix
102 UNIX_REL_TEST = test_transport_api_unreliability_unix
103 UNIX_QUOTA_TEST = test_quota_compliance_unix \
104      test_quota_compliance_unix_asymmetric
105 endif
106
107 noinst_PROGRAMS = \
108  $(WLAN_BIN_SENDER) \
109  $(WLAN_BIN_RECEIVER)
110
111 if HAVE_TESTING
112 TESTING_LIBS = libgnunettransporttesting.la
113 endif
114
115 lib_LTLIBRARIES = \
116   libgnunettransport.la \
117   $(TESTING_LIBS)
118
119 libgnunettransporttesting_la_SOURCES = \
120   transport-testing.c transport-testing.h
121 libgnunettransporttesting_la_LIBADD = \
122   $(top_builddir)/src/transport/libgnunettransport.la \
123   $(top_builddir)/src/hello/libgnunethello.la \
124   $(top_builddir)/src/util/libgnunetutil.la \
125   $(top_builddir)/src/testing/libgnunettesting.la \
126   $(GN_LIBINTL) 
127 libgnunettransporttesting_la_DEPENDENCIES = \
128   libgnunettransport.la
129 libgnunettransporttesting_la_LDFLAGS = \
130  $(GN_LIB_LDFLAGS)
131
132 libgnunettransport_la_SOURCES = \
133   transport_api.c transport.h \
134   transport_api_blacklist.c \
135   transport_api_address_to_string.c \
136   transport_api_address_lookup.c
137 libgnunettransport_la_LIBADD = \
138   $(top_builddir)/src/hello/libgnunethello.la \
139   $(top_builddir)/src/util/libgnunetutil.la \
140   $(GN_LIBINTL) 
141 libgnunettransport_la_LDFLAGS = \
142   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
143   -version-info 3:0:1
144
145 libexec_PROGRAMS = \
146  $(WLAN_BIN) \
147  $(WLAN_BIN_DUMMY) \
148  $(BT_BIN) \
149  gnunet-service-transport 
150
151 bin_PROGRAMS = \
152  gnunet-transport \
153  gnunet-transport-certificate-creation
154
155 #bin_SCRIPTS = \
156 # gnunet-transport-certificate-creation
157
158 gnunet_transport_certificate_creation_SOURCES = \
159  gnunet-transport-certificate-creation.c
160 gnunet_transport_certificate_creation_LDADD = \
161   $(top_builddir)/src/util/libgnunetutil.la
162
163 gnunet_helper_transport_wlan_SOURCES = \
164  gnunet-helper-transport-wlan.c
165
166 gnunet_helper_transport_wlan_dummy_SOURCES = \
167  gnunet-helper-transport-wlan-dummy.c
168 gnunet_helper_transport_wlan_dummy_LDADD = \
169   $(top_builddir)/src/util/libgnunetutil.la 
170
171 gnunet_transport_wlan_sender_SOURCES = \
172  gnunet-transport-wlan-sender.c
173 gnunet_transport_wlan_sender_LDADD = \
174   $(top_builddir)/src/util/libgnunetutil.la 
175
176 gnunet_transport_wlan_receiver_SOURCES = \
177  gnunet-transport-wlan-receiver.c
178 gnunet_transport_wlan_receiver_LDADD = \
179   $(top_builddir)/src/util/libgnunetutil.la 
180
181 gnunet_helper_transport_bluetooth_SOURCES = \
182  gnunet-helper-transport-bluetooth.c
183 if MINGW
184  gnunet_helper_transport_bluetooth_LDADD = \
185   $(top_builddir)/src/util/libgnunetutil.la 
186  gnunet_helper_transport_bluetooth_LDFLAGS = -lws2_32
187 else
188  gnunet_helper_transport_bluetooth_LDFLAGS = -lbluetooth
189 endif
190
191 gnunet_transport_SOURCES = \
192  gnunet-transport.c         
193 gnunet_transport_LDADD = \
194   $(top_builddir)/src/transport/libgnunettransport.la \
195   $(top_builddir)/src/nat/libgnunetnat.la \
196   $(top_builddir)/src/hello/libgnunethello.la \
197   $(top_builddir)/src/util/libgnunetutil.la \
198   $(GN_LIBINTL)
199 gnunet_transport_DEPENDENCIES = \
200   libgnunettransport.la                         
201
202 gnunet_service_transport_SOURCES = \
203  gnunet-service-transport.c gnunet-service-transport.h \
204  gnunet-service-transport_blacklist.h gnunet-service-transport_blacklist.c \
205  gnunet-service-transport_clients.h gnunet-service-transport_clients.c \
206  gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
207  gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
208  gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
209  gnunet-service-transport_validation.h gnunet-service-transport_validation.c \
210  gnunet-service-transport_manipulation.h gnunet-service-transport_manipulation.c 
211 gnunet_service_transport_LDADD = \
212   $(top_builddir)/src/ats/libgnunetats.la \
213   $(top_builddir)/src/hello/libgnunethello.la \
214   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
215   $(top_builddir)/src/statistics/libgnunetstatistics.la \
216   $(top_builddir)/src/util/libgnunetutil.la \
217   $(GN_GLPK) \
218   $(GN_LIBINTL)
219 gnunet_service_transport_CFLAGS = \
220   $(CFLAGS)
221 # -DANALYZE
222
223 plugin_LTLIBRARIES = \
224   libgnunet_plugin_transport_tcp.la \
225   libgnunet_plugin_transport_udp.la \
226   $(UNIX_PLUGIN_LA) \
227   $(HTTP_CLIENT_PLUGIN_LA) \
228   $(HTTPS_CLIENT_PLUGIN_LA) \
229   $(HTTP_SERVER_PLUGIN_LA) \
230   $(HTTPS_SERVER_PLUGIN_LA) \
231   $(WLAN_PLUGIN_LA) \
232   $(BT_PLUGIN_LA) \
233   libgnunet_plugin_transport_template.la
234
235 libgnunet_plugin_transport_tcp_la_SOURCES = \
236   plugin_transport_tcp.c
237 libgnunet_plugin_transport_tcp_la_LIBADD = \
238   $(top_builddir)/src/hello/libgnunethello.la \
239   $(top_builddir)/src/statistics/libgnunetstatistics.la \
240   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
241   $(top_builddir)/src/nat/libgnunetnat.la \
242   $(top_builddir)/src/util/libgnunetutil.la \
243   $(LTLIBINTL)
244 libgnunet_plugin_transport_tcp_la_LDFLAGS = \
245  $(GN_PLUGIN_LDFLAGS)
246
247 libgnunet_plugin_transport_template_la_SOURCES = \
248   plugin_transport_template.c
249 libgnunet_plugin_transport_template_la_LIBADD = \
250   $(top_builddir)/src/util/libgnunetutil.la \
251   $(LTLIBINTL)
252 libgnunet_plugin_transport_template_la_LDFLAGS = \
253  $(GN_PLUGIN_LDFLAGS)
254
255 libgnunet_plugin_transport_wlan_la_SOURCES = \
256   plugin_transport_wlan.c plugin_transport_wlan.h
257 libgnunet_plugin_transport_wlan_la_LIBADD = \
258   $(top_builddir)/src/hello/libgnunethello.la \
259   $(top_builddir)/src/statistics/libgnunetstatistics.la \
260   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
261   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
262   $(top_builddir)/src/util/libgnunetutil.la 
263 libgnunet_plugin_transport_wlan_la_LDFLAGS = \
264   $(GN_PLUGIN_LDFLAGS)
265
266 libgnunet_plugin_transport_bluetooth_la_SOURCES = \
267   plugin_transport_bluetooth.c plugin_transport_wlan.h
268 libgnunet_plugin_transport_bluetooth_la_LIBADD = \
269   $(top_builddir)/src/hello/libgnunethello.la \
270   $(top_builddir)/src/statistics/libgnunetstatistics.la \
271   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
272   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
273   $(top_builddir)/src/util/libgnunetutil.la
274 libgnunet_plugin_transport_bluetooth_la_LDFLAGS = \
275   $(GN_PLUGIN_LDFLAGS)
276
277 libgnunet_plugin_transport_udp_la_SOURCES = \
278   plugin_transport_udp.c plugin_transport_udp.h \
279   plugin_transport_udp_broadcasting.c
280 libgnunet_plugin_transport_udp_la_LIBADD = \
281   $(top_builddir)/src/hello/libgnunethello.la \
282   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
283   $(top_builddir)/src/statistics/libgnunetstatistics.la \
284   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
285   $(top_builddir)/src/nat/libgnunetnat.la \
286   $(top_builddir)/src/util/libgnunetutil.la \
287   $(LTLIBINTL)
288 libgnunet_plugin_transport_udp_la_LDFLAGS = \
289  $(GN_PLUGIN_LDFLAGS)
290
291 libgnunet_plugin_transport_unix_la_SOURCES = \
292   plugin_transport_unix.c
293 libgnunet_plugin_transport_unix_la_LIBADD = \
294   $(top_builddir)/src/hello/libgnunethello.la \
295   $(top_builddir)/src/statistics/libgnunetstatistics.la \
296   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
297   $(top_builddir)/src/util/libgnunetutil.la \
298   $(LTLIBINTL)
299 libgnunet_plugin_transport_unix_la_LDFLAGS = \
300  $(GN_PLUGIN_LDFLAGS)
301
302
303 libgnunet_plugin_transport_http_client_la_SOURCES = \
304   plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
305 libgnunet_plugin_transport_http_client_la_LIBADD = \
306   $(top_builddir)/src/hello/libgnunethello.la \
307   $(top_builddir)/src/statistics/libgnunetstatistics.la \
308   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
309   @LIBCURL@ \
310   $(top_builddir)/src/nat/libgnunetnat.la \
311   $(top_builddir)/src/util/libgnunetutil.la 
312 libgnunet_plugin_transport_http_client_la_LDFLAGS = \
313  $(GN_PLUGIN_LDFLAGS)
314 libgnunet_plugin_transport_http_client_la_CFLAGS = \
315  $(CFLAGS) 
316 libgnunet_plugin_transport_http_client_la_CPPFLAGS = \
317  @LIBCURL_CPPFLAGS@ $(AM_CPPFLAGS)
318
319
320 libgnunet_plugin_transport_http_server_la_SOURCES = \
321   plugin_transport_http_server.c plugin_transport_http_common.c 
322 libgnunet_plugin_transport_http_server_la_LIBADD = \
323   $(top_builddir)/src/hello/libgnunethello.la \
324   $(top_builddir)/src/statistics/libgnunetstatistics.la \
325   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
326   $(top_builddir)/src/nat/libgnunetnat.la \
327   $(top_builddir)/src/util/libgnunetutil.la 
328 libgnunet_plugin_transport_http_server_la_LDFLAGS = \
329  $(GN_LIBMHD) \
330  $(GN_PLUGIN_LDFLAGS)
331 libgnunet_plugin_transport_http_server_la_CFLAGS = \
332  $(CFLAGS) 
333
334 libgnunet_plugin_transport_https_client_la_SOURCES = \
335   plugin_transport_http_client.c plugin_transport_http_common.c
336 libgnunet_plugin_transport_https_client_la_LIBADD = \
337   $(top_builddir)/src/hello/libgnunethello.la \
338   $(top_builddir)/src/statistics/libgnunetstatistics.la \
339   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
340   @LIBCURL@ \
341   $(top_builddir)/src/nat/libgnunetnat.la \
342   $(top_builddir)/src/util/libgnunetutil.la 
343 libgnunet_plugin_transport_https_client_la_LDFLAGS = \
344  $(GN_PLUGIN_LDFLAGS)
345 libgnunet_plugin_transport_https_client_la_CFLAGS = \
346  $(CFLAGS) -DBUILD_HTTPS 
347 libgnunet_plugin_transport_https_client_la_CPPFLAGS = \
348  @LIBCURL_CPPFLAGS@ $(AM_CPPFLAGS)
349
350
351 libgnunet_plugin_transport_https_server_la_SOURCES = \
352   plugin_transport_http_server.c plugin_transport_http_common.c
353 libgnunet_plugin_transport_https_server_la_LIBADD = \
354   $(top_builddir)/src/hello/libgnunethello.la \
355   $(top_builddir)/src/statistics/libgnunetstatistics.la \
356   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
357   $(top_builddir)/src/nat/libgnunetnat.la \
358   $(top_builddir)/src/util/libgnunetutil.la 
359 libgnunet_plugin_transport_https_server_la_LDFLAGS = \
360  $(GN_LIBMHD) \
361  $(GN_PLUGIN_LDFLAGS)
362 libgnunet_plugin_transport_https_server_la_CFLAGS = \
363  $(CFLAGS) -DBUILD_HTTPS 
364
365
366 if HAVE_TESTING
367 check_PROGRAMS = \
368  test_transport_testing_startstop \
369  test_transport_testing_restart \
370  test_transport_testing \
371  test_transport_startonly \
372  test_plugin_tcp \
373  test_plugin_udp \
374  $(UNIX_TEST) \
375  $(WLAN_PLUGIN_TEST) \
376  $(BT_PLUGIN_TEST) \
377  test_http_common \
378  $(HTTP_CLIENT_PLUGIN_TEST) \
379  $(HTTPS_CLIENT_PLUGIN_TEST) \
380  $(HTTP_SERVER_PLUGIN_TEST) \
381  $(HTTPS_SERVER_PLUGIN_TEST) \
382  test_transport_api_blacklisting \
383  test_transport_api_disconnect_tcp \
384  test_transport_api_bidirectional_connect \
385  test_transport_api_tcp \
386  test_transport_api_restart_1peer \
387  test_transport_api_restart_2peers \
388  test_transport_api_timeout_tcp \
389  test_transport_api_limited_sockets_tcp \
390  test_transport_api_tcp_nat \
391  test_transport_api_udp \
392  test_transport_api_timeout_udp \
393  $(UNIX_PLUGIN_TEST) \
394  $(UNIX_PLUGIN_TIMEOUT_TEST) \
395  test_transport_api_udp_nat \
396  $(HTTP_API_TEST) \
397  $(HTTP_REVERSE_API_TEST) \
398  $(HTTP_API_TIMEOUT_TEST) \
399  $(HTTPS_API_TEST) \
400  $(HTTPS_API_TIMEOUT_TEST) \
401  $(WLAN_API_TEST) \
402  $(BT_API_TEST) \
403  test_transport_api_multi \
404  test_transport_blacklisting_no_bl \
405  test_transport_blacklisting_outbound_bl_full \
406  test_transport_blacklisting_outbound_bl_plugin \
407  test_transport_blacklisting_inbound_bl_plugin \
408  test_transport_blacklisting_inbound_bl_full \
409  test_transport_blacklisting_multiple_plugins \
410  test_transport_api_manipulation_send_tcp \
411  test_transport_api_manipulation_recv_tcp \
412  test_transport_api_manipulation_cfg \
413  test_transport_api_reliability_tcp \
414  test_transport_api_reliability_tcp_nat \
415  test_transport_api_unreliability_udp \
416  test_transport_api_unreliability_constant_udp \
417  $(UNIX_REL_TEST) \
418  $(HTTP_REL_TEST) \
419  $(HTTPS_REL_TEST) \
420  $(WLAN_REL_TEST) \
421  $(WLAN_UREL_TEST) \
422  $(BT_REL_TEST) \
423  $(BT_UREL_TEST) \
424  test_quota_compliance_tcp \
425  test_quota_compliance_tcp_asymmetric \
426  test_quota_compliance_udp \
427  $(UNIX_QUOTA_TEST) \
428  $(HTTP_QUOTA_TEST) \
429  $(HTTPS_QUOTA_TEST) \
430  $(WLAN_QUOTA_TEST) \
431  $(BT_QUOTA_TEST)
432 endif
433
434 if ENABLE_TEST_RUN
435 TESTS = \
436  test_transport_testing_startstop \
437  test_transport_testing_restart \
438  test_transport_testing \
439  test_transport_startonly \
440  test_plugin_tcp \
441  test_plugin_udp \
442  $(UNIX_TEST) \
443  $(WLAN_PLUGIN_TEST) \
444  $(BT_PLUGIN_TEST) \
445  test_transport_api_blacklisting \
446  test_transport_api_disconnect_tcp \
447  test_transport_api_bidirectional_connect \
448  test_transport_api_tcp \
449  test_transport_api_restart_1peer \
450  test_transport_api_restart_2peers \
451  test_transport_api_timeout_tcp \
452  test_transport_api_limited_sockets_tcp \
453  test_transport_api_tcp_nat \
454  test_transport_api_udp \
455  test_transport_api_timeout_udp \
456  $(UNIX_PLUGIN_TEST) \
457  $(UNIX_PLUGIN_TIMEOUT_TEST) \
458  test_transport_api_udp_nat \
459  $(HTTP_API_TEST) \
460  $(HTTP_API_TIMEOUT_TEST) \
461  $(HTTPS_API_TEST) \
462  $(HTTPS_API_TIMEOUT_TEST) \
463  $(WLAN_API_TEST) \
464  $(BT_API_TEST) \
465  test_transport_api_multi \
466  test_transport_blacklisting_no_bl \
467  test_transport_blacklisting_outbound_bl_full \
468  test_transport_blacklisting_outbound_bl_plugin \
469  test_transport_blacklisting_inbound_bl_plugin \
470  test_transport_blacklisting_inbound_bl_full \
471  test_transport_blacklisting_multiple_plugins \
472  test_transport_api_manipulation_send_tcp \
473  test_transport_api_manipulation_recv_tcp \
474  test_transport_api_manipulation_cfg \
475  test_transport_api_reliability_tcp \
476  test_transport_api_reliability_tcp_nat \
477  test_transport_api_unreliability_udp \
478  test_transport_api_unreliability_constant_udp \
479  $(UNIX_REL_TEST) \
480  $(HTTP_REL_TEST) \
481  $(HTTPS_REL_TEST) \
482  $(WLAN_REL_TEST) \
483  $(WLAN_UREL_TEST) \
484  $(BT_REL_TEST) \
485  $(BT_UREL_TEST) \
486  test_quota_compliance_tcp \
487  test_quota_compliance_tcp_asymmetric \
488  test_quota_compliance_udp \
489  $(UNIX_QUOTA_TEST) \
490  $(HTTP_QUOTA_TEST) \
491  $(HTTPS_QUOTA_TEST)
492 endif
493
494 test_transport_testing_startstop_SOURCES = \
495  test_transport_testing_startstop.c
496 test_transport_testing_startstop_LDADD = \
497  $(top_builddir)/src/util/libgnunetutil.la \
498  $(top_builddir)/src/transport/libgnunettransport.la \
499  $(top_builddir)/src/hello/libgnunethello.la \
500  $(top_builddir)/src/transport/libgnunettransporttesting.la 
501
502 test_transport_testing_restart_SOURCES = \
503  test_transport_testing_restart.c
504 test_transport_testing_restart_LDADD = \
505  $(top_builddir)/src/util/libgnunetutil.la \
506  $(top_builddir)/src/transport/libgnunettransport.la \
507  $(top_builddir)/src/hello/libgnunethello.la \
508  $(top_builddir)/src/transport/libgnunettransporttesting.la 
509
510 test_transport_testing_SOURCES = \
511  test_transport_testing.c
512 test_transport_testing_LDADD = \
513  $(top_builddir)/src/util/libgnunetutil.la \
514  $(top_builddir)/src/transport/libgnunettransport.la \
515  $(top_builddir)/src/hello/libgnunethello.la \
516  $(top_builddir)/src/transport/libgnunettransporttesting.la 
517
518 test_transport_api_blacklisting_SOURCES = \
519  test_transport_api_blacklisting.c
520 test_transport_api_blacklisting_LDADD = \
521  $(top_builddir)/src/transport/libgnunettransport.la \
522  $(top_builddir)/src/hello/libgnunethello.la \
523  $(top_builddir)/src/statistics/libgnunetstatistics.la \
524  $(top_builddir)/src/util/libgnunetutil.la \
525  $(top_builddir)/src/transport/libgnunettransporttesting.la 
526
527 test_transport_blacklisting_no_bl_SOURCES = \
528  test_transport_blacklisting.c
529 test_transport_blacklisting_no_bl_LDADD = \
530  $(top_builddir)/src/transport/libgnunettransport.la \
531  $(top_builddir)/src/hello/libgnunethello.la \
532  $(top_builddir)/src/statistics/libgnunetstatistics.la \
533  $(top_builddir)/src/util/libgnunetutil.la \
534  $(top_builddir)/src/transport/libgnunettransporttesting.la 
535  
536 test_transport_blacklisting_outbound_bl_full_SOURCES = \
537  test_transport_blacklisting.c
538 test_transport_blacklisting_outbound_bl_full_LDADD = \
539  $(top_builddir)/src/transport/libgnunettransport.la \
540  $(top_builddir)/src/hello/libgnunethello.la \
541  $(top_builddir)/src/statistics/libgnunetstatistics.la \
542  $(top_builddir)/src/util/libgnunetutil.la \
543  $(top_builddir)/src/transport/libgnunettransporttesting.la  
544  
545 test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
546  test_transport_blacklisting.c
547 test_transport_blacklisting_outbound_bl_plugin_LDADD = \
548  $(top_builddir)/src/transport/libgnunettransport.la \
549  $(top_builddir)/src/hello/libgnunethello.la \
550  $(top_builddir)/src/statistics/libgnunetstatistics.la \
551  $(top_builddir)/src/util/libgnunetutil.la \
552  $(top_builddir)/src/transport/libgnunettransporttesting.la   
553
554 test_transport_blacklisting_inbound_bl_full_SOURCES = \
555  test_transport_blacklisting.c
556 test_transport_blacklisting_inbound_bl_full_LDADD = \
557  $(top_builddir)/src/transport/libgnunettransport.la \
558  $(top_builddir)/src/hello/libgnunethello.la \
559  $(top_builddir)/src/statistics/libgnunetstatistics.la \
560  $(top_builddir)/src/util/libgnunetutil.la \
561  $(top_builddir)/src/transport/libgnunettransporttesting.la   
562  
563 test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
564  test_transport_blacklisting.c
565 test_transport_blacklisting_inbound_bl_plugin_LDADD = \
566  $(top_builddir)/src/transport/libgnunettransport.la \
567  $(top_builddir)/src/hello/libgnunethello.la \
568  $(top_builddir)/src/statistics/libgnunetstatistics.la \
569  $(top_builddir)/src/util/libgnunetutil.la \
570  $(top_builddir)/src/transport/libgnunettransporttesting.la  
571
572 test_transport_blacklisting_multiple_plugins_SOURCES = \
573  test_transport_blacklisting.c
574 test_transport_blacklisting_multiple_plugins_LDADD = \
575  $(top_builddir)/src/transport/libgnunettransport.la \
576  $(top_builddir)/src/hello/libgnunethello.la \
577  $(top_builddir)/src/statistics/libgnunetstatistics.la \
578  $(top_builddir)/src/util/libgnunetutil.la \
579  $(top_builddir)/src/transport/libgnunettransporttesting.la  
580
581
582 test_transport_api_disconnect_tcp_SOURCES = \
583  test_transport_api_disconnect.c
584 test_transport_api_disconnect_tcp_LDADD = \
585  $(top_builddir)/src/transport/libgnunettransport.la \
586  $(top_builddir)/src/hello/libgnunethello.la \
587  $(top_builddir)/src/statistics/libgnunetstatistics.la \
588  $(top_builddir)/src/util/libgnunetutil.la \
589  $(top_builddir)/src/transport/libgnunettransporttesting.la 
590
591 test_transport_startonly_SOURCES = \
592  test_transport_startonly.c
593 test_transport_startonly_LDADD = \
594  $(top_builddir)/src/transport/libgnunettransport.la \
595  $(top_builddir)/src/hello/libgnunethello.la \
596  $(top_builddir)/src/statistics/libgnunetstatistics.la \
597  $(top_builddir)/src/util/libgnunetutil.la \
598  $(top_builddir)/src/transport/libgnunettransporttesting.la 
599
600 test_plugin_tcp_SOURCES = \
601  test_plugin_transport.c
602 test_plugin_tcp_LDADD = \
603  $(top_builddir)/src/transport/libgnunettransport.la \
604  $(top_builddir)/src/statistics/libgnunetstatistics.la \
605  $(top_builddir)/src/hello/libgnunethello.la \
606  $(top_builddir)/src/util/libgnunetutil.la  \
607  $(top_builddir)/src/transport/libgnunettransporttesting.la
608
609 test_plugin_udp_SOURCES = \
610  test_plugin_transport.c
611 test_plugin_udp_LDADD = \
612  $(top_builddir)/src/transport/libgnunettransport.la \
613  $(top_builddir)/src/statistics/libgnunetstatistics.la \
614  $(top_builddir)/src/hello/libgnunethello.la \
615  $(top_builddir)/src/util/libgnunetutil.la  \
616  $(top_builddir)/src/transport/libgnunettransporttesting.la
617
618 test_plugin_unix_SOURCES = \
619  test_plugin_transport.c
620 test_plugin_unix_LDADD = \
621  $(top_builddir)/src/transport/libgnunettransport.la \
622  $(top_builddir)/src/statistics/libgnunetstatistics.la \
623  $(top_builddir)/src/hello/libgnunethello.la \
624  $(top_builddir)/src/util/libgnunetutil.la  \
625  $(top_builddir)/src/transport/libgnunettransporttesting.la
626
627 test_plugin_wlan_SOURCES = \
628  test_plugin_transport.c
629 test_plugin_wlan_LDADD = \
630  $(top_builddir)/src/transport/libgnunettransport.la \
631  $(top_builddir)/src/statistics/libgnunetstatistics.la \
632  $(top_builddir)/src/hello/libgnunethello.la \
633  $(top_builddir)/src/util/libgnunetutil.la  \
634  $(top_builddir)/src/transport/libgnunettransporttesting.la 
635
636 test_plugin_bluetooth_SOURCES = \
637  test_plugin_transport.c
638 test_plugin_bluetooth_LDADD = \
639  $(top_builddir)/src/transport/libgnunettransport.la \
640  $(top_builddir)/src/statistics/libgnunetstatistics.la \
641  $(top_builddir)/src/hello/libgnunethello.la \
642  $(top_builddir)/src/util/libgnunetutil.la  \
643  $(top_builddir)/src/transport/libgnunettransporttesting.la 
644
645 test_http_common_SOURCES = \
646  test_http_common.c plugin_transport_http_common.c
647 test_http_common_LDADD = \
648  $(top_builddir)/src/transport/libgnunettransport.la \
649  $(top_builddir)/src/statistics/libgnunetstatistics.la \
650  $(top_builddir)/src/hello/libgnunethello.la \
651  $(top_builddir)/src/util/libgnunetutil.la  \
652  $(top_builddir)/src/transport/libgnunettransporttesting.la 
653
654 test_plugin_http_server_SOURCES = \
655  test_plugin_transport.c
656 test_plugin_http_server_LDADD = \
657  $(top_builddir)/src/transport/libgnunettransport.la \
658  $(top_builddir)/src/statistics/libgnunetstatistics.la \
659  $(top_builddir)/src/hello/libgnunethello.la \
660  $(top_builddir)/src/util/libgnunetutil.la  \
661  $(top_builddir)/src/transport/libgnunettransporttesting.la 
662
663 test_plugin_https_server_SOURCES = \
664  test_plugin_transport.c
665 test_plugin_https_server_LDADD = \
666  $(top_builddir)/src/transport/libgnunettransport.la \
667  $(top_builddir)/src/statistics/libgnunetstatistics.la \
668  $(top_builddir)/src/hello/libgnunethello.la \
669  $(top_builddir)/src/util/libgnunetutil.la  \
670  $(top_builddir)/src/transport/libgnunettransporttesting.la
671
672 test_plugin_http_client_SOURCES = \
673  test_plugin_transport.c
674 test_plugin_http_client_LDADD = \
675  $(top_builddir)/src/transport/libgnunettransport.la \
676  $(top_builddir)/src/statistics/libgnunetstatistics.la \
677  $(top_builddir)/src/hello/libgnunethello.la \
678  $(top_builddir)/src/util/libgnunetutil.la  \
679  $(top_builddir)/src/transport/libgnunettransporttesting.la 
680
681 test_plugin_https_client_SOURCES = \
682  test_plugin_transport.c
683 test_plugin_https_client_LDADD = \
684  $(top_builddir)/src/transport/libgnunettransport.la \
685  $(top_builddir)/src/statistics/libgnunetstatistics.la \
686  $(top_builddir)/src/hello/libgnunethello.la \
687  $(top_builddir)/src/util/libgnunetutil.la  \
688  $(top_builddir)/src/transport/libgnunettransporttesting.la  
689
690 test_transport_api_tcp_SOURCES = \
691  test_transport_api.c
692 test_transport_api_tcp_LDADD = \
693  $(top_builddir)/src/transport/libgnunettransport.la \
694  $(top_builddir)/src/hello/libgnunethello.la \
695  $(top_builddir)/src/util/libgnunetutil.la  \
696  $(top_builddir)/src/transport/libgnunettransporttesting.la
697
698 test_transport_api_bidirectional_connect_SOURCES = \
699  test_transport_api_bidirectional_connect.c
700 test_transport_api_bidirectional_connect_LDADD = \
701  $(top_builddir)/src/transport/libgnunettransport.la \
702  $(top_builddir)/src/hello/libgnunethello.la \
703  $(top_builddir)/src/util/libgnunetutil.la  \
704  $(top_builddir)/src/transport/libgnunettransporttesting.la
705
706 test_transport_api_restart_1peer_SOURCES = \
707  test_transport_api_restart_1peer.c
708 test_transport_api_restart_1peer_LDADD = \
709  $(top_builddir)/src/transport/libgnunettransport.la \
710  $(top_builddir)/src/hello/libgnunethello.la \
711  $(top_builddir)/src/statistics/libgnunetstatistics.la \
712  $(top_builddir)/src/util/libgnunetutil.la \
713  $(top_builddir)/src/transport/libgnunettransporttesting.la 
714
715 test_transport_api_restart_2peers_SOURCES = \
716  test_transport_api_restart_2peers.c
717 test_transport_api_restart_2peers_LDADD = \
718  $(top_builddir)/src/transport/libgnunettransport.la \
719  $(top_builddir)/src/hello/libgnunethello.la \
720  $(top_builddir)/src/statistics/libgnunetstatistics.la \
721  $(top_builddir)/src/util/libgnunetutil.la \
722  $(top_builddir)/src/transport/libgnunettransporttesting.la 
723
724 test_transport_api_limited_sockets_tcp_SOURCES = \
725  test_transport_api_limited_sockets.c
726 test_transport_api_limited_sockets_tcp_LDADD = \
727  $(top_builddir)/src/transport/libgnunettransport.la \
728  $(top_builddir)/src/hello/libgnunethello.la \
729  $(top_builddir)/src/util/libgnunetutil.la  \
730  $(top_builddir)/src/transport/libgnunettransporttesting.la
731
732 test_transport_api_tcp_nat_SOURCES = \
733  test_transport_api.c
734 test_transport_api_tcp_nat_LDADD = \
735  $(top_builddir)/src/transport/libgnunettransport.la \
736  $(top_builddir)/src/hello/libgnunethello.la \
737  $(top_builddir)/src/util/libgnunetutil.la \
738  $(top_builddir)/src/transport/libgnunettransporttesting.la 
739
740 test_transport_api_manipulation_send_tcp_SOURCES = \
741  test_transport_api_manipulation_send_tcp.c
742 test_transport_api_manipulation_send_tcp_LDADD = \
743  $(top_builddir)/src/transport/libgnunettransport.la \
744  $(top_builddir)/src/hello/libgnunethello.la \
745  $(top_builddir)/src/util/libgnunetutil.la \
746  $(top_builddir)/src/transport/libgnunettransporttesting.la 
747
748 test_transport_api_manipulation_recv_tcp_SOURCES = \
749  test_transport_api_manipulation_recv_tcp.c
750 test_transport_api_manipulation_recv_tcp_LDADD = \
751  $(top_builddir)/src/transport/libgnunettransport.la \
752  $(top_builddir)/src/hello/libgnunethello.la \
753  $(top_builddir)/src/util/libgnunetutil.la \
754  $(top_builddir)/src/transport/libgnunettransporttesting.la 
755
756 test_transport_api_manipulation_cfg_SOURCES = \
757  test_transport_api_manipulation_cfg.c
758 test_transport_api_manipulation_cfg_LDADD = \
759  $(top_builddir)/src/transport/libgnunettransport.la \
760  $(top_builddir)/src/hello/libgnunethello.la \
761  $(top_builddir)/src/util/libgnunetutil.la \
762  $(top_builddir)/src/transport/libgnunettransporttesting.la 
763
764
765
766 test_transport_api_reliability_tcp_SOURCES = \
767  test_transport_api_reliability.c
768 test_transport_api_reliability_tcp_LDADD = \
769  $(top_builddir)/src/transport/libgnunettransport.la \
770  $(top_builddir)/src/hello/libgnunethello.la \
771  $(top_builddir)/src/util/libgnunetutil.la \
772  $(top_builddir)/src/transport/libgnunettransporttesting.la 
773
774 test_transport_api_timeout_tcp_SOURCES = \
775  test_transport_api_timeout.c
776 test_transport_api_timeout_tcp_LDADD = \
777  $(top_builddir)/src/transport/libgnunettransport.la \
778  $(top_builddir)/src/hello/libgnunethello.la \
779  $(top_builddir)/src/util/libgnunetutil.la \
780  $(top_builddir)/src/transport/libgnunettransporttesting.la 
781
782 test_transport_api_timeout_unix_SOURCES = \
783  test_transport_api_timeout.c
784 test_transport_api_timeout_unix_LDADD = \
785  $(top_builddir)/src/transport/libgnunettransport.la \
786  $(top_builddir)/src/hello/libgnunethello.la \
787  $(top_builddir)/src/util/libgnunetutil.la \
788  $(top_builddir)/src/transport/libgnunettransporttesting.la 
789
790 test_transport_api_reliability_tcp_nat_SOURCES = \
791  test_transport_api_reliability.c
792 test_transport_api_reliability_tcp_nat_LDADD = \
793  $(top_builddir)/src/transport/libgnunettransport.la \
794  $(top_builddir)/src/hello/libgnunethello.la \
795  $(top_builddir)/src/util/libgnunetutil.la \
796  $(top_builddir)/src/transport/libgnunettransporttesting.la 
797
798 test_transport_api_reliability_wlan_SOURCES = \
799  test_transport_api_reliability.c
800 test_transport_api_reliability_wlan_LDADD = \
801  $(top_builddir)/src/transport/libgnunettransport.la \
802  $(top_builddir)/src/hello/libgnunethello.la \
803  $(top_builddir)/src/util/libgnunetutil.la \
804  $(top_builddir)/src/transport/libgnunettransporttesting.la
805
806 test_transport_api_reliability_bluetooth_SOURCES = \
807  test_transport_api_reliability.c
808 test_transport_api_reliability_bluetooth_LDADD = \
809  $(top_builddir)/src/transport/libgnunettransport.la \
810  $(top_builddir)/src/hello/libgnunethello.la \
811  $(top_builddir)/src/util/libgnunetutil.la \
812  $(top_builddir)/src/transport/libgnunettransporttesting.la 
813
814 test_transport_api_unreliability_wlan_SOURCES = \
815  test_transport_api_unreliability.c
816 test_transport_api_unreliability_wlan_LDADD = \
817  $(top_builddir)/src/transport/libgnunettransport.la \
818  $(top_builddir)/src/hello/libgnunethello.la \
819  $(top_builddir)/src/util/libgnunetutil.la \
820  $(top_builddir)/src/transport/libgnunettransporttesting.la 
821
822 test_transport_api_unreliability_bluetooth_SOURCES = \
823  test_transport_api_unreliability.c
824 test_transport_api_unreliability_bluetooth_LDADD = \
825  $(top_builddir)/src/transport/libgnunettransport.la \
826  $(top_builddir)/src/hello/libgnunethello.la \
827  $(top_builddir)/src/util/libgnunetutil.la \
828  $(top_builddir)/src/transport/libgnunettransporttesting.la 
829
830 test_transport_api_udp_SOURCES = \
831  test_transport_api.c
832 test_transport_api_udp_LDADD = \
833  $(top_builddir)/src/transport/libgnunettransport.la \
834  $(top_builddir)/src/hello/libgnunethello.la \
835  $(top_builddir)/src/util/libgnunetutil.la  \
836  $(top_builddir)/src/transport/libgnunettransporttesting.la
837
838 test_transport_api_timeout_udp_SOURCES = \
839  test_transport_api_timeout.c
840 test_transport_api_timeout_udp_LDADD = \
841  $(top_builddir)/src/transport/libgnunettransport.la \
842  $(top_builddir)/src/hello/libgnunethello.la \
843  $(top_builddir)/src/util/libgnunetutil.la \
844  $(top_builddir)/src/transport/libgnunettransporttesting.la  
845
846 test_transport_api_udp_nat_SOURCES = \
847  test_transport_api.c
848 test_transport_api_udp_nat_LDADD = \
849  $(top_builddir)/src/transport/libgnunettransport.la \
850  $(top_builddir)/src/hello/libgnunethello.la \
851  $(top_builddir)/src/util/libgnunetutil.la  \
852  $(top_builddir)/src/transport/libgnunettransporttesting.la  
853
854 test_transport_api_unix_SOURCES = \
855  test_transport_api.c
856 test_transport_api_unix_LDADD = \
857  $(top_builddir)/src/transport/libgnunettransport.la \
858  $(top_builddir)/src/hello/libgnunethello.la \
859  $(top_builddir)/src/util/libgnunetutil.la \
860  $(top_builddir)/src/transport/libgnunettransporttesting.la 
861
862 # HTTP tests
863 test_transport_api_http_SOURCES = \
864  test_transport_api.c
865 test_transport_api_http_LDADD = \
866  $(top_builddir)/src/transport/libgnunettransport.la \
867  $(top_builddir)/src/hello/libgnunethello.la \
868  $(top_builddir)/src/util/libgnunetutil.la \
869  $(top_builddir)/src/transport/libgnunettransporttesting.la
870
871 test_transport_api_http_reverse_SOURCES = \
872  test_transport_api.c
873 test_transport_api_http_reverse_LDADD = \
874  $(top_builddir)/src/transport/libgnunettransport.la \
875  $(top_builddir)/src/hello/libgnunethello.la \
876  $(top_builddir)/src/util/libgnunetutil.la \
877  $(top_builddir)/src/transport/libgnunettransporttesting.la
878
879 test_transport_api_timeout_http_SOURCES = \
880  test_transport_api_timeout.c
881 test_transport_api_timeout_http_LDADD = \
882  $(top_builddir)/src/transport/libgnunettransport.la \
883  $(top_builddir)/src/hello/libgnunethello.la \
884  $(top_builddir)/src/util/libgnunetutil.la \
885  $(top_builddir)/src/transport/libgnunettransporttesting.la  
886
887 test_transport_api_reliability_http_SOURCES = \
888  test_transport_api_reliability.c
889 test_transport_api_reliability_http_LDADD = \
890  $(top_builddir)/src/transport/libgnunettransport.la \
891  $(top_builddir)/src/hello/libgnunethello.la \
892  $(top_builddir)/src/util/libgnunetutil.la \
893  $(top_builddir)/src/transport/libgnunettransporttesting.la 
894
895 test_quota_compliance_http_SOURCES = \
896  test_quota_compliance.c
897 test_quota_compliance_http_LDADD = \
898  $(top_builddir)/src/transport/libgnunettransport.la \
899  $(top_builddir)/src/hello/libgnunethello.la \
900  $(top_builddir)/src/util/libgnunetutil.la \
901  $(top_builddir)/src/transport/libgnunettransporttesting.la 
902
903 test_quota_compliance_http_asymmetric_SOURCES = \
904  test_quota_compliance.c
905 test_quota_compliance_http_asymmetric_LDADD = \
906  $(top_builddir)/src/transport/libgnunettransport.la \
907  $(top_builddir)/src/hello/libgnunethello.la \
908  $(top_builddir)/src/util/libgnunetutil.la \
909  $(top_builddir)/src/transport/libgnunettransporttesting.la
910
911 test_quota_compliance_https_SOURCES = \
912  test_quota_compliance.c
913 test_quota_compliance_https_LDADD = \
914  $(top_builddir)/src/transport/libgnunettransport.la \
915  $(top_builddir)/src/hello/libgnunethello.la \
916  $(top_builddir)/src/util/libgnunetutil.la \
917  $(top_builddir)/src/transport/libgnunettransporttesting.la
918
919 test_quota_compliance_https_asymmetric_SOURCES = \
920  test_quota_compliance.c
921 test_quota_compliance_https_asymmetric_LDADD = \
922  $(top_builddir)/src/transport/libgnunettransport.la \
923  $(top_builddir)/src/hello/libgnunethello.la \
924  $(top_builddir)/src/util/libgnunetutil.la \
925  $(top_builddir)/src/transport/libgnunettransporttesting.la
926
927 # HTTPS tests
928 test_transport_api_https_SOURCES = \
929  test_transport_api.c
930 test_transport_api_https_LDADD = \
931  $(top_builddir)/src/transport/libgnunettransport.la \
932  $(top_builddir)/src/hello/libgnunethello.la \
933  $(top_builddir)/src/util/libgnunetutil.la  \
934  $(top_builddir)/src/transport/libgnunettransporttesting.la 
935
936 test_transport_api_timeout_https_SOURCES = \
937  test_transport_api_timeout.c
938 test_transport_api_timeout_https_LDADD = \
939  $(top_builddir)/src/transport/libgnunettransport.la \
940  $(top_builddir)/src/hello/libgnunethello.la \
941  $(top_builddir)/src/util/libgnunetutil.la \
942  $(top_builddir)/src/transport/libgnunettransporttesting.la  
943
944
945 test_transport_api_reliability_https_SOURCES = \
946  test_transport_api_reliability.c
947 test_transport_api_reliability_https_LDADD = \
948  $(top_builddir)/src/transport/libgnunettransport.la \
949  $(top_builddir)/src/hello/libgnunethello.la \
950  $(top_builddir)/src/util/libgnunetutil.la \
951  $(top_builddir)/src/transport/libgnunettransporttesting.la 
952
953 test_transport_api_unreliability_unix_SOURCES = \
954  test_transport_api_unreliability.c
955 test_transport_api_unreliability_unix_LDADD = \
956  $(top_builddir)/src/transport/libgnunettransport.la \
957  $(top_builddir)/src/hello/libgnunethello.la \
958  $(top_builddir)/src/util/libgnunetutil.la \
959  $(top_builddir)/src/transport/libgnunettransporttesting.la 
960
961 test_transport_api_unreliability_udp_SOURCES = \
962  test_transport_api_unreliability.c
963 test_transport_api_unreliability_udp_LDADD = \
964  $(top_builddir)/src/transport/libgnunettransport.la \
965  $(top_builddir)/src/hello/libgnunethello.la \
966  $(top_builddir)/src/util/libgnunetutil.la \
967  $(top_builddir)/src/transport/libgnunettransporttesting.la 
968
969 test_transport_api_unreliability_constant_udp_SOURCES = \
970  test_transport_api_unreliability_constant.c
971 test_transport_api_unreliability_constant_udp_LDADD = \
972  $(top_builddir)/src/transport/libgnunettransport.la \
973  $(top_builddir)/src/hello/libgnunethello.la \
974  $(top_builddir)/src/util/libgnunetutil.la \
975  $(top_builddir)/src/transport/libgnunettransporttesting.la 
976
977 if LINUX
978 test_transport_api_wlan_SOURCES = \
979  test_transport_api.c
980 test_transport_api_wlan_LDADD = \
981  $(top_builddir)/src/transport/libgnunettransport.la \
982  $(top_builddir)/src/hello/libgnunethello.la \
983  $(top_builddir)/src/util/libgnunetutil.la \
984  $(top_builddir)/src/transport/libgnunettransporttesting.la  
985 endif
986
987 if LINUX
988 if HAVE_LIBBLUETOOTH
989 test_transport_api_bluetooth_SOURCES = \
990  test_transport_api.c
991 test_transport_api_bluetooth_LDADD = \
992  $(top_builddir)/src/transport/libgnunettransport.la \
993  $(top_builddir)/src/hello/libgnunethello.la \
994  $(top_builddir)/src/util/libgnunetutil.la \
995  $(top_builddir)/src/transport/libgnunettransporttesting.la  
996 endif
997 endif
998
999 test_quota_compliance_tcp_SOURCES = \
1000  test_quota_compliance.c
1001 test_quota_compliance_tcp_LDADD = \
1002  $(top_builddir)/src/transport/libgnunettransport.la \
1003  $(top_builddir)/src/hello/libgnunethello.la \
1004  $(top_builddir)/src/util/libgnunetutil.la \
1005  $(top_builddir)/src/transport/libgnunettransporttesting.la 
1006
1007 test_quota_compliance_tcp_asymmetric_SOURCES = \
1008  test_quota_compliance.c
1009 test_quota_compliance_tcp_asymmetric_LDADD = \
1010  $(top_builddir)/src/transport/libgnunettransport.la \
1011  $(top_builddir)/src/hello/libgnunethello.la \
1012  $(top_builddir)/src/util/libgnunetutil.la \
1013  $(top_builddir)/src/transport/libgnunettransporttesting.la 
1014
1015 test_quota_compliance_udp_SOURCES = \
1016  test_quota_compliance.c
1017 test_quota_compliance_udp_LDADD = \
1018  $(top_builddir)/src/transport/libgnunettransport.la \
1019  $(top_builddir)/src/hello/libgnunethello.la \
1020  $(top_builddir)/src/util/libgnunetutil.la \
1021  $(top_builddir)/src/transport/libgnunettransporttesting.la
1022
1023 test_quota_compliance_unix_SOURCES = \
1024  test_quota_compliance.c
1025 test_quota_compliance_unix_LDADD = \
1026  $(top_builddir)/src/transport/libgnunettransport.la \
1027  $(top_builddir)/src/hello/libgnunethello.la \
1028  $(top_builddir)/src/util/libgnunetutil.la \
1029  $(top_builddir)/src/transport/libgnunettransporttesting.la
1030
1031 test_quota_compliance_unix_asymmetric_SOURCES = \
1032  test_quota_compliance.c
1033 test_quota_compliance_unix_asymmetric_LDADD = \
1034  $(top_builddir)/src/transport/libgnunettransport.la \
1035  $(top_builddir)/src/hello/libgnunethello.la \
1036  $(top_builddir)/src/util/libgnunetutil.la \
1037  $(top_builddir)/src/transport/libgnunettransporttesting.la
1038
1039 test_quota_compliance_wlan_SOURCES = \
1040  test_quota_compliance.c
1041 test_quota_compliance_wlan_LDADD = \
1042  $(top_builddir)/src/transport/libgnunettransport.la \
1043  $(top_builddir)/src/hello/libgnunethello.la \
1044  $(top_builddir)/src/util/libgnunetutil.la \
1045  $(top_builddir)/src/transport/libgnunettransporttesting.la
1046
1047 test_quota_compliance_wlan_asymmetric_SOURCES = \
1048  test_quota_compliance.c
1049 test_quota_compliance_wlan_asymmetric_LDADD = \
1050  $(top_builddir)/src/transport/libgnunettransport.la \
1051  $(top_builddir)/src/hello/libgnunethello.la \
1052  $(top_builddir)/src/util/libgnunetutil.la \
1053  $(top_builddir)/src/transport/libgnunettransporttesting.la
1054
1055 test_quota_compliance_bluetooth_SOURCES = \
1056  test_quota_compliance.c
1057 test_quota_compliance_bluetooth_LDADD = \
1058  $(top_builddir)/src/transport/libgnunettransport.la \
1059  $(top_builddir)/src/hello/libgnunethello.la \
1060  $(top_builddir)/src/util/libgnunetutil.la \
1061  $(top_builddir)/src/transport/libgnunettransporttesting.la
1062
1063 test_quota_compliance_bluetooth_asymmetric_SOURCES = \
1064  test_quota_compliance.c
1065 test_quota_compliance_bluetooth_asymmetric_LDADD = \
1066  $(top_builddir)/src/transport/libgnunettransport.la \
1067  $(top_builddir)/src/hello/libgnunethello.la \
1068  $(top_builddir)/src/util/libgnunetutil.la \
1069  $(top_builddir)/src/transport/libgnunettransporttesting.la
1070
1071 test_transport_api_multi_SOURCES = \
1072  test_transport_api.c
1073 test_transport_api_multi_LDADD = \
1074  $(top_builddir)/src/transport/libgnunettransport.la \
1075  $(top_builddir)/src/hello/libgnunethello.la \
1076  $(top_builddir)/src/util/libgnunetutil.la \
1077  $(top_builddir)/src/transport/libgnunettransporttesting.la 
1078
1079
1080 EXTRA_DIST = \
1081 test_plugin_hostkey \
1082 test_plugin_hostkey.ecc \
1083 template_cfg_peer1.conf\
1084 template_cfg_peer2.conf\
1085 test_plugin_transport_data.conf\
1086 test_plugin_transport_data_udp.conf\
1087 test_quota_compliance_data.conf\
1088 test_quota_compliance_http_peer1.conf\
1089 test_quota_compliance_http_peer2.conf\
1090 test_quota_compliance_https_peer1.conf\
1091 test_quota_compliance_https_peer2.conf\
1092 test_quota_compliance_tcp_peer1.conf\
1093 test_quota_compliance_tcp_peer2.conf\
1094 test_quota_compliance_udp_peer1.conf\
1095 test_quota_compliance_udp_peer2.conf\
1096 test_quota_compliance_unix_peer1.conf\
1097 test_quota_compliance_unix_peer2.conf\
1098 test_quota_compliance_wlan_peer1.conf\
1099 test_quota_compliance_wlan_peer2.conf\
1100 test_quota_compliance_bluetooth_peer1.conf\
1101 test_quota_compliance_bluetooth_peer2.conf\
1102 test_quota_compliance_http_asymmetric_peer1.conf\
1103 test_quota_compliance_http_asymmetric_peer2.conf\
1104 test_quota_compliance_https_asymmetric_peer1.conf\
1105 test_quota_compliance_https_asymmetric_peer2.conf\
1106 test_quota_compliance_tcp_asymmetric_peer1.conf\
1107 test_quota_compliance_tcp_asymmetric_peer2.conf\
1108 test_quota_compliance_unix_asymmetric_peer1.conf\
1109 test_quota_compliance_unix_asymmetric_peer2.conf\
1110 test_quota_compliance_wlan_asymmetric_peer1.conf\
1111 test_quota_compliance_wlan_asymmetric_peer2.conf\
1112 test_quota_compliance_bluetooth_asymmetric_peer1.conf\
1113 test_quota_compliance_bluetooth_asymmetric_peer2.conf\
1114 test_transport_api_data.conf\
1115 test_transport_api_http_peer1.conf\
1116 test_transport_api_http_peer2.conf\
1117 test_transport_api_https_peer1.conf\
1118 test_transport_api_https_peer2.conf\
1119 test_transport_api_limited_sockets_tcp_peer1.conf\
1120 test_transport_api_limited_sockets_tcp_peer2.conf\
1121 test_transport_api_timeout_tcp_peer1.conf\
1122 test_transport_api_timeout_tcp_peer2.conf\
1123 test_transport_api_multi_peer1.conf\
1124 test_transport_api_multi_peer2.conf\
1125 test_transport_api_reliability_http_peer1.conf\
1126 test_transport_api_reliability_http_peer2.conf\
1127 test_transport_api_reliability_https_peer1.conf\
1128 test_transport_api_reliability_https_peer2.conf\
1129 test_transport_api_reliability_tcp_nat_peer1.conf\
1130 test_transport_api_reliability_tcp_nat_peer2.conf\
1131 test_transport_api_reliability_tcp_peer1.conf\
1132 test_transport_api_reliability_tcp_peer2.conf\
1133 test_transport_api_reliability_wlan_peer1.conf\
1134 test_transport_api_reliability_wlan_peer2.conf\
1135 test_transport_api_reliability_bluetooth_peer1.conf\
1136 test_transport_api_reliability_bluetooth_peer2.conf\
1137 test_transport_api_bidirectional_connect_peer1.conf\
1138 test_transport_api_bidirectional_connect_peer2.conf\
1139 test_transport_api_manipulation_send_tcp_peer1.conf\
1140 test_transport_api_manipulation_send_tcp_peer2.conf\
1141 test_transport_api_manipulation_recv_tcp_peer1.conf\
1142 test_transport_api_manipulation_recv_tcp_peer2.conf\
1143 test_transport_api_manipulation_cfg_peer1.conf\
1144 test_transport_api_manipulation_cfg_peer2.conf\
1145 test_transport_api_tcp_nat_peer1.conf\
1146 test_transport_api_tcp_nat_peer2.conf\
1147 test_transport_api_tcp_peer1.conf\
1148 test_transport_api_tcp_peer2.conf\
1149 test_transport_api_udp_nat_peer1.conf\
1150 test_transport_api_udp_nat_peer2.conf\
1151 test_transport_api_udp_peer1.conf\
1152 test_transport_api_udp_peer2.conf\
1153 test_transport_api_timeout_udp_peer1.conf\
1154 test_transport_api_timeout_udp_peer2.conf\
1155 test_transport_api_unix_peer1.conf\
1156 test_transport_api_unix_peer2.conf\
1157 test_transport_api_timeout_unix_peer1.conf\
1158 test_transport_api_timeout_unix_peer2.conf\
1159 test_transport_api_unreliability_udp_peer1.conf\
1160 test_transport_api_unreliability_udp_peer2.conf\
1161 test_transport_api_unreliability_unix_peer1.conf\
1162 test_transport_api_unreliability_unix_peer2.conf\
1163 test_transport_api_unreliability_wlan_peer1.conf\
1164 test_transport_api_unreliability_wlan_peer2.conf\
1165 test_transport_api_unreliability_bluetooth_peer1.conf\
1166 test_transport_api_unreliability_bluetooth_peer2.conf\
1167 test_transport_api_wlan_peer1.conf\
1168 test_transport_api_wlan_peer2.conf\
1169 test_transport_api_bluetooth_peer1.conf\
1170 test_transport_api_bluetooth_peer2.conf\
1171 test_transport_defaults.conf\
1172 test_transport_startonly.conf\
1173 test_transport_api_disconnect_tcp_peer1.conf\
1174 test_transport_api_disconnect_tcp_peer2.conf\
1175 test_transport_api_timeout_http_peer1.conf\
1176 test_transport_api_timeout_http_peer2.conf\
1177 test_transport_api_timeout_https_peer1.conf\
1178 test_transport_api_timeout_https_peer2.conf\
1179 test_transport_api_unreliability_constant_udp_peer1.conf\
1180 test_transport_api_unreliability_constant_udp_peer2.conf\
1181 test_transport_blacklisting_cfg_peer1.conf \
1182 test_transport_blacklisting_cfg_peer2.conf \
1183 test_transport_blacklisting_cfg_blp_peer1_full.conf\
1184 test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1185 test_transport_blacklisting_cfg_blp_peer2_full.conf\
1186 test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1187 test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1188 test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1189 test_transport_api_http_reverse_peer1.conf \
1190 test_transport_api_http_reverse_peer2.conf