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