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