feff9d91894471559b24cc050ef869d1f6deb245
[oweals/gnunet.git] / src / transport / Makefile.am
1 INCLUDES = -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  AM_LDFLAGS = -lbluetooth
72  BT_BIN = gnunet-helper-transport-bluetooth
73  BT_PLUGIN_LA = libgnunet_plugin_transport_bluetooth.la
74 endif
75 endif
76
77 if LINUX
78 if HAVE_LIBBLUETOOTH
79 install-exec-hook2:
80         $(top_srcdir)/src/transport/install-bluetooth-helper.sh $(libexecdir) $(SUDO_BINARY) || true
81 endif
82 else
83 install-exec-hook2:
84 endif
85
86 if !MINGW
87 UNIX_PLUGIN_LA = libgnunet_plugin_transport_unix.la
88 UNIX_PLUGIN_TEST = test_transport_api_unix 
89 UNIX_TEST = test_plugin_unix
90 UNIX_PLUGIN_TIMEOUT_TEST = test_transport_api_timeout_unix
91 UNIX_REL_TEST = test_transport_api_unreliability_unix
92 UNIX_QUOTA_TEST = test_quota_compliance_unix \
93      test_quota_compliance_unix_asymmetric
94 endif
95
96 noinst_PROGRAMS = \
97  $(WLAN_BIN_SENDER) \
98  $(WLAN_BIN_RECEIVER)
99
100 if HAVE_TESTING
101 TESTING_LIBS = libgnunettransporttesting.la
102 endif
103
104 lib_LTLIBRARIES = \
105   libgnunettransport.la \
106   $(TESTING_LIBS)
107
108 libgnunettransporttesting_la_SOURCES = \
109   transport-testing.c transport-testing.h
110 libgnunettransporttesting_la_LIBADD = \
111   $(top_builddir)/src/transport/libgnunettransport.la \
112   $(top_builddir)/src/hello/libgnunethello.la \
113   $(top_builddir)/src/util/libgnunetutil.la \
114   $(top_builddir)/src/testing/libgnunettesting.la \
115   $(GN_LIBINTL) 
116 libgnunettransporttesting_la_DEPENDENCIES = \
117   libgnunettransport.la
118 libgnunettransporttesting_la_LDFLAGS = \
119  $(GN_LIB_LDFLAGS)
120
121 libgnunettransport_la_SOURCES = \
122   transport_api.c transport.h \
123   transport_api_blacklist.c \
124   transport_api_address_to_string.c \
125   transport_api_address_lookup.c
126 libgnunettransport_la_LIBADD = \
127   $(top_builddir)/src/hello/libgnunethello.la \
128   $(top_builddir)/src/util/libgnunetutil.la \
129   $(GN_LIBINTL) 
130 libgnunettransport_la_LDFLAGS = \
131   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
132   -version-info 3:0:1
133
134 libexec_PROGRAMS = \
135  $(WLAN_BIN) \
136  $(WLAN_BIN_DUMMY) \
137  $(BT_BIN) \
138  gnunet-service-transport 
139
140 bin_PROGRAMS = \
141  gnunet-transport \
142  gnunet-transport-certificate-creation
143
144 #bin_SCRIPTS = \
145 # gnunet-transport-certificate-creation
146
147 gnunet_transport_certificate_creation_SOURCES = \
148  gnunet-transport-certificate-creation.c
149 gnunet_transport_certificate_creation_LDADD = \
150   $(top_builddir)/src/util/libgnunetutil.la
151
152 gnunet_helper_transport_wlan_SOURCES = \
153  gnunet-helper-transport-wlan.c
154
155 gnunet_helper_transport_wlan_dummy_SOURCES = \
156  gnunet-helper-transport-wlan-dummy.c
157 gnunet_helper_transport_wlan_dummy_LDADD = \
158   $(top_builddir)/src/util/libgnunetutil.la 
159
160 gnunet_transport_wlan_sender_SOURCES = \
161  gnunet-transport-wlan-sender.c
162 gnunet_transport_wlan_sender_LDADD = \
163   $(top_builddir)/src/util/libgnunetutil.la 
164
165 gnunet_transport_wlan_receiver_SOURCES = \
166  gnunet-transport-wlan-receiver.c
167 gnunet_transport_wlan_receiver_LDADD = \
168   $(top_builddir)/src/util/libgnunetutil.la 
169
170 gnunet_helper_transport_bluetooth_SOURCES = \
171  gnunet-helper-transport-bluetooth.c
172
173 gnunet_transport_SOURCES = \
174  gnunet-transport.c         
175 gnunet_transport_LDADD = \
176   $(top_builddir)/src/transport/libgnunettransport.la \
177   $(top_builddir)/src/nat/libgnunetnat.la \
178   $(top_builddir)/src/hello/libgnunethello.la \
179   $(top_builddir)/src/util/libgnunetutil.la \
180   $(GN_LIBINTL)
181 gnunet_transport_DEPENDENCIES = \
182   libgnunettransport.la                         
183
184 gnunet_service_transport_SOURCES = \
185  gnunet-service-transport.c gnunet-service-transport.h \
186  gnunet-service-transport_blacklist.h gnunet-service-transport_blacklist.c \
187  gnunet-service-transport_clients.h gnunet-service-transport_clients.c \
188  gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
189  gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
190  gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
191  gnunet-service-transport_validation.h gnunet-service-transport_validation.c \
192  gnunet-service-transport_manipulation.h gnunet-service-transport_manipulation.c 
193 gnunet_service_transport_LDADD = \
194   $(top_builddir)/src/ats/libgnunetats.la \
195   $(top_builddir)/src/hello/libgnunethello.la \
196   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
197   $(top_builddir)/src/statistics/libgnunetstatistics.la \
198   $(top_builddir)/src/util/libgnunetutil.la \
199   $(GN_GLPK) \
200   $(GN_LIBINTL)
201 gnunet_service_transport_CFLAGS = \
202   $(CFLAGS)
203 # -DANALYZE
204
205 plugin_LTLIBRARIES = \
206   libgnunet_plugin_transport_tcp.la \
207   libgnunet_plugin_transport_udp.la \
208   $(UNIX_PLUGIN_LA) \
209   $(HTTP_CLIENT_PLUGIN_LA) \
210   $(HTTPS_CLIENT_PLUGIN_LA) \
211   $(HTTP_SERVER_PLUGIN_LA) \
212   $(HTTPS_SERVER_PLUGIN_LA) \
213   $(WLAN_PLUGIN_LA) \
214   libgnunet_plugin_transport_template.la
215
216 libgnunet_plugin_transport_tcp_la_SOURCES = \
217   plugin_transport_tcp.c
218 libgnunet_plugin_transport_tcp_la_LIBADD = \
219   $(top_builddir)/src/hello/libgnunethello.la \
220   $(top_builddir)/src/statistics/libgnunetstatistics.la \
221   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
222   $(top_builddir)/src/nat/libgnunetnat.la \
223   $(top_builddir)/src/util/libgnunetutil.la \
224   $(LTLIBINTL)
225 libgnunet_plugin_transport_tcp_la_LDFLAGS = \
226  $(GN_PLUGIN_LDFLAGS)
227
228 libgnunet_plugin_transport_template_la_SOURCES = \
229   plugin_transport_template.c
230 libgnunet_plugin_transport_template_la_LIBADD = \
231   $(top_builddir)/src/util/libgnunetutil.la \
232   $(LTLIBINTL)
233 libgnunet_plugin_transport_template_la_LDFLAGS = \
234  $(GN_PLUGIN_LDFLAGS)
235
236 libgnunet_plugin_transport_wlan_la_SOURCES = \
237   plugin_transport_wlan.c plugin_transport_wlan.h
238 libgnunet_plugin_transport_wlan_la_LIBADD = \
239   $(top_builddir)/src/hello/libgnunethello.la \
240   $(top_builddir)/src/statistics/libgnunetstatistics.la \
241   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
242   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
243   $(top_builddir)/src/util/libgnunetutil.la 
244 libgnunet_plugin_transport_wlan_la_LDFLAGS = \
245   $(GN_PLUGIN_LDFLAGS)
246
247 libgnunet_plugin_transport_udp_la_SOURCES = \
248   plugin_transport_udp.c plugin_transport_udp.h \
249   plugin_transport_udp_broadcasting.c
250 libgnunet_plugin_transport_udp_la_LIBADD = \
251   $(top_builddir)/src/hello/libgnunethello.la \
252   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
253   $(top_builddir)/src/statistics/libgnunetstatistics.la \
254   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
255   $(top_builddir)/src/nat/libgnunetnat.la \
256   $(top_builddir)/src/util/libgnunetutil.la \
257   $(LTLIBINTL)
258 libgnunet_plugin_transport_udp_la_LDFLAGS = \
259  $(GN_PLUGIN_LDFLAGS)
260
261 libgnunet_plugin_transport_unix_la_SOURCES = \
262   plugin_transport_unix.c
263 libgnunet_plugin_transport_unix_la_LIBADD = \
264   $(top_builddir)/src/hello/libgnunethello.la \
265   $(top_builddir)/src/statistics/libgnunetstatistics.la \
266   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
267   $(top_builddir)/src/util/libgnunetutil.la \
268   $(LTLIBINTL)
269 libgnunet_plugin_transport_unix_la_LDFLAGS = \
270  $(GN_PLUGIN_LDFLAGS)
271
272
273 libgnunet_plugin_transport_http_client_la_SOURCES = \
274   plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
275 libgnunet_plugin_transport_http_client_la_LIBADD = \
276   $(top_builddir)/src/hello/libgnunethello.la \
277   $(top_builddir)/src/statistics/libgnunetstatistics.la \
278   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
279   @LIBCURL@ \
280   $(top_builddir)/src/nat/libgnunetnat.la \
281   $(top_builddir)/src/util/libgnunetutil.la 
282 libgnunet_plugin_transport_http_client_la_LDFLAGS = \
283  $(GN_PLUGIN_LDFLAGS)
284 libgnunet_plugin_transport_http_client_la_CFLAGS = \
285  $(CFLAGS) 
286 libgnunet_plugin_transport_http_client_la_CPPFLAGS = \
287  @LIBCURL_CPPFLAGS@
288
289
290 libgnunet_plugin_transport_http_server_la_SOURCES = \
291   plugin_transport_http_server.c plugin_transport_http_common.c 
292 libgnunet_plugin_transport_http_server_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/nat/libgnunetnat.la \
297   $(top_builddir)/src/util/libgnunetutil.la 
298 libgnunet_plugin_transport_http_server_la_LDFLAGS = \
299  $(GN_LIBMHD) \
300  $(GN_PLUGIN_LDFLAGS)
301 libgnunet_plugin_transport_http_server_la_CFLAGS = \
302  $(CFLAGS) 
303
304 libgnunet_plugin_transport_https_client_la_SOURCES = \
305   plugin_transport_http_client.c plugin_transport_http_common.c
306 libgnunet_plugin_transport_https_client_la_LIBADD = \
307   $(top_builddir)/src/hello/libgnunethello.la \
308   $(top_builddir)/src/statistics/libgnunetstatistics.la \
309   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
310   @LIBCURL@ \
311   $(top_builddir)/src/nat/libgnunetnat.la \
312   $(top_builddir)/src/util/libgnunetutil.la 
313 libgnunet_plugin_transport_https_client_la_LDFLAGS = \
314  $(GN_PLUGIN_LDFLAGS)
315 libgnunet_plugin_transport_https_client_la_CFLAGS = \
316  $(CFLAGS) -DBUILD_HTTPS 
317 libgnunet_plugin_transport_https_client_la_CPPFLAGS = \
318  @LIBCURL_CPPFLAGS@
319
320
321 libgnunet_plugin_transport_https_server_la_SOURCES = \
322   plugin_transport_http_server.c plugin_transport_http_common.c
323 libgnunet_plugin_transport_https_server_la_LIBADD = \
324   $(top_builddir)/src/hello/libgnunethello.la \
325   $(top_builddir)/src/statistics/libgnunetstatistics.la \
326   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
327   $(top_builddir)/src/nat/libgnunetnat.la \
328   $(top_builddir)/src/util/libgnunetutil.la 
329 libgnunet_plugin_transport_https_server_la_LDFLAGS = \
330  $(GN_LIBMHD) \
331  $(GN_PLUGIN_LDFLAGS)
332 libgnunet_plugin_transport_https_server_la_CFLAGS = \
333  $(CFLAGS) -DBUILD_HTTPS 
334
335 libgnunet_plugin_transport_bluetooth_la_SOURCES = \
336   plugin_transport_bluetooth.c plugin_transport_wlan.h
337 libgnunet_plugin_transport_bluetooth_la_LIBADD = \
338   $(top_builddir)/src/hello/libgnunethello.la \
339   $(top_builddir)/src/statistics/libgnunetstatistics.la \
340   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
341   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
342   $(top_builddir)/src/util/libgnunetutil.la \
343 libgnunet_plugin_transport_bluetooth_la_LDFLAGS = \
344   $(GN_PLUGIN_LDFLAGS)
345
346 if HAVE_TESTING
347 check_PROGRAMS = \
348  test_transport_testing_startstop \
349  test_transport_testing_restart \
350  test_transport_testing \
351  test_transport_startonly \
352  test_plugin_tcp \
353  test_plugin_udp \
354  $(UNIX_TEST) \
355  $(WLAN_PLUGIN_TEST) \
356  test_http_common \
357  $(HTTP_CLIENT_PLUGIN_TEST) \
358  $(HTTPS_CLIENT_PLUGIN_TEST) \
359  $(HTTP_SERVER_PLUGIN_TEST) \
360  $(HTTPS_SERVER_PLUGIN_TEST) \
361  test_transport_api_blacklisting \
362  test_transport_api_disconnect_tcp \
363  test_transport_api_bidirectional_connect \
364  test_transport_api_tcp \
365  test_transport_api_restart_1peer \
366  test_transport_api_restart_2peers \
367  test_transport_api_timeout_tcp \
368  test_transport_api_limited_sockets_tcp \
369  test_transport_api_tcp_nat \
370  test_transport_api_udp \
371  test_transport_api_timeout_udp \
372  $(UNIX_PLUGIN_TEST) \
373  $(UNIX_PLUGIN_TIMEOUT_TEST) \
374  test_transport_api_udp_nat \
375  $(HTTP_API_TEST) \
376  $(HTTP_REVERSE_API_TEST) \
377  $(HTTP_API_TIMEOUT_TEST) \
378  $(HTTPS_API_TEST) \
379  $(HTTPS_API_TIMEOUT_TEST) \
380  $(WLAN_API_TEST) \
381  test_transport_api_multi \
382  test_transport_blacklisting_no_bl \
383  test_transport_blacklisting_outbound_bl_full \
384  test_transport_blacklisting_outbound_bl_plugin \
385  test_transport_blacklisting_inbound_bl_plugin \
386  test_transport_blacklisting_inbound_bl_full \
387  test_transport_blacklisting_multiple_plugins \
388  test_transport_api_manipulation_send_tcp \
389  test_transport_api_manipulation_recv_tcp \
390  test_transport_api_manipulation_cfg \
391  test_transport_api_reliability_tcp \
392  test_transport_api_reliability_tcp_nat \
393  test_transport_api_unreliability_udp \
394  test_transport_api_unreliability_constant_udp \
395  $(UNIX_REL_TEST) \
396  $(HTTP_REL_TEST) \
397  $(HTTPS_REL_TEST) \
398  $(WLAN_REL_TEST) \
399  $(WLAN_UREL_TEST) \
400  test_quota_compliance_tcp \
401  test_quota_compliance_tcp_asymmetric \
402  test_quota_compliance_udp \
403  $(UNIX_QUOTA_TEST) \
404  $(HTTP_QUOTA_TEST) \
405  $(HTTPS_QUOTA_TEST) \
406  $(WLAN_QUOTA_TEST)
407 endif
408
409 if ENABLE_TEST_RUN
410 TESTS = \
411  test_transport_testing_startstop \
412  test_transport_testing_restart \
413  test_transport_testing \
414  test_transport_startonly \
415  test_plugin_tcp \
416  test_plugin_udp \
417  $(UNIX_TEST) \
418  $(WLAN_PLUGIN_TEST) \
419  test_transport_api_blacklisting \
420  test_transport_api_disconnect_tcp \
421  test_transport_api_bidirectional_connect \
422  test_transport_api_tcp \
423  test_transport_api_restart_1peer \
424  test_transport_api_restart_2peers \
425  test_transport_api_timeout_tcp \
426  test_transport_api_limited_sockets_tcp \
427  test_transport_api_tcp_nat \
428  test_transport_api_udp \
429  test_transport_api_timeout_udp \
430  $(UNIX_PLUGIN_TEST) \
431  $(UNIX_PLUGIN_TIMEOUT_TEST) \
432  test_transport_api_udp_nat \
433  $(HTTP_API_TEST) \
434  $(HTTP_API_TIMEOUT_TEST) \
435  $(HTTPS_API_TEST) \
436  $(HTTPS_API_TIMEOUT_TEST) \
437  $(WLAN_API_TEST) \
438  test_transport_api_multi \
439  test_transport_blacklisting_no_bl \
440  test_transport_blacklisting_outbound_bl_full \
441  test_transport_blacklisting_outbound_bl_plugin \
442  test_transport_blacklisting_inbound_bl_plugin \
443  test_transport_blacklisting_inbound_bl_full \
444  test_transport_blacklisting_multiple_plugins \
445  test_transport_api_manipulation_send_tcp \
446  test_transport_api_manipulation_recv_tcp \
447  test_transport_api_manipulation_cfg \
448  test_transport_api_reliability_tcp \
449  test_transport_api_reliability_tcp_nat \
450  test_transport_api_unreliability_udp \
451  test_transport_api_unreliability_constant_udp \
452  $(UNIX_REL_TEST) \
453  $(HTTP_REL_TEST) \
454  $(HTTPS_REL_TEST) \
455  $(WLAN_REL_TEST) \
456  $(WLAN_UREL_TEST) \
457  test_quota_compliance_tcp \
458  test_quota_compliance_tcp_asymmetric \
459  test_quota_compliance_udp \
460  $(UNIX_QUOTA_TEST) \
461  $(HTTP_QUOTA_TEST) \
462  $(HTTPS_QUOTA_TEST)
463 endif
464
465 test_transport_testing_startstop_SOURCES = \
466  test_transport_testing_startstop.c
467 test_transport_testing_startstop_LDADD = \
468  $(top_builddir)/src/util/libgnunetutil.la \
469  $(top_builddir)/src/transport/libgnunettransport.la \
470  $(top_builddir)/src/hello/libgnunethello.la \
471  $(top_builddir)/src/transport/libgnunettransporttesting.la 
472
473 test_transport_testing_restart_SOURCES = \
474  test_transport_testing_restart.c
475 test_transport_testing_restart_LDADD = \
476  $(top_builddir)/src/util/libgnunetutil.la \
477  $(top_builddir)/src/transport/libgnunettransport.la \
478  $(top_builddir)/src/hello/libgnunethello.la \
479  $(top_builddir)/src/transport/libgnunettransporttesting.la 
480
481 test_transport_testing_SOURCES = \
482  test_transport_testing.c
483 test_transport_testing_LDADD = \
484  $(top_builddir)/src/util/libgnunetutil.la \
485  $(top_builddir)/src/transport/libgnunettransport.la \
486  $(top_builddir)/src/hello/libgnunethello.la \
487  $(top_builddir)/src/transport/libgnunettransporttesting.la 
488
489 test_transport_api_blacklisting_SOURCES = \
490  test_transport_api_blacklisting.c
491 test_transport_api_blacklisting_LDADD = \
492  $(top_builddir)/src/transport/libgnunettransport.la \
493  $(top_builddir)/src/hello/libgnunethello.la \
494  $(top_builddir)/src/statistics/libgnunetstatistics.la \
495  $(top_builddir)/src/util/libgnunetutil.la \
496  $(top_builddir)/src/transport/libgnunettransporttesting.la 
497
498 test_transport_blacklisting_no_bl_SOURCES = \
499  test_transport_blacklisting.c
500 test_transport_blacklisting_no_bl_LDADD = \
501  $(top_builddir)/src/transport/libgnunettransport.la \
502  $(top_builddir)/src/hello/libgnunethello.la \
503  $(top_builddir)/src/statistics/libgnunetstatistics.la \
504  $(top_builddir)/src/util/libgnunetutil.la \
505  $(top_builddir)/src/transport/libgnunettransporttesting.la 
506  
507 test_transport_blacklisting_outbound_bl_full_SOURCES = \
508  test_transport_blacklisting.c
509 test_transport_blacklisting_outbound_bl_full_LDADD = \
510  $(top_builddir)/src/transport/libgnunettransport.la \
511  $(top_builddir)/src/hello/libgnunethello.la \
512  $(top_builddir)/src/statistics/libgnunetstatistics.la \
513  $(top_builddir)/src/util/libgnunetutil.la \
514  $(top_builddir)/src/transport/libgnunettransporttesting.la  
515  
516 test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
517  test_transport_blacklisting.c
518 test_transport_blacklisting_outbound_bl_plugin_LDADD = \
519  $(top_builddir)/src/transport/libgnunettransport.la \
520  $(top_builddir)/src/hello/libgnunethello.la \
521  $(top_builddir)/src/statistics/libgnunetstatistics.la \
522  $(top_builddir)/src/util/libgnunetutil.la \
523  $(top_builddir)/src/transport/libgnunettransporttesting.la   
524
525 test_transport_blacklisting_inbound_bl_full_SOURCES = \
526  test_transport_blacklisting.c
527 test_transport_blacklisting_inbound_bl_full_LDADD = \
528  $(top_builddir)/src/transport/libgnunettransport.la \
529  $(top_builddir)/src/hello/libgnunethello.la \
530  $(top_builddir)/src/statistics/libgnunetstatistics.la \
531  $(top_builddir)/src/util/libgnunetutil.la \
532  $(top_builddir)/src/transport/libgnunettransporttesting.la   
533  
534 test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
535  test_transport_blacklisting.c
536 test_transport_blacklisting_inbound_bl_plugin_LDADD = \
537  $(top_builddir)/src/transport/libgnunettransport.la \
538  $(top_builddir)/src/hello/libgnunethello.la \
539  $(top_builddir)/src/statistics/libgnunetstatistics.la \
540  $(top_builddir)/src/util/libgnunetutil.la \
541  $(top_builddir)/src/transport/libgnunettransporttesting.la  
542
543 test_transport_blacklisting_multiple_plugins_SOURCES = \
544  test_transport_blacklisting.c
545 test_transport_blacklisting_multiple_plugins_LDADD = \
546  $(top_builddir)/src/transport/libgnunettransport.la \
547  $(top_builddir)/src/hello/libgnunethello.la \
548  $(top_builddir)/src/statistics/libgnunetstatistics.la \
549  $(top_builddir)/src/util/libgnunetutil.la \
550  $(top_builddir)/src/transport/libgnunettransporttesting.la  
551
552
553 test_transport_api_disconnect_tcp_SOURCES = \
554  test_transport_api_disconnect.c
555 test_transport_api_disconnect_tcp_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_startonly_SOURCES = \
563  test_transport_startonly.c
564 test_transport_startonly_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_plugin_tcp_SOURCES = \
572  test_plugin_transport.c
573 test_plugin_tcp_LDADD = \
574  $(top_builddir)/src/transport/libgnunettransport.la \
575  $(top_builddir)/src/statistics/libgnunetstatistics.la \
576  $(top_builddir)/src/hello/libgnunethello.la \
577  $(top_builddir)/src/util/libgnunetutil.la  \
578  $(top_builddir)/src/transport/libgnunettransporttesting.la
579  
580 test_plugin_udp_SOURCES = \
581  test_plugin_transport.c
582 test_plugin_udp_LDADD = \
583  $(top_builddir)/src/transport/libgnunettransport.la \
584  $(top_builddir)/src/statistics/libgnunetstatistics.la \
585  $(top_builddir)/src/hello/libgnunethello.la \
586  $(top_builddir)/src/util/libgnunetutil.la  \
587  $(top_builddir)/src/transport/libgnunettransporttesting.la
588
589 test_plugin_unix_SOURCES = \
590  test_plugin_transport.c
591 test_plugin_unix_LDADD = \
592  $(top_builddir)/src/transport/libgnunettransport.la \
593  $(top_builddir)/src/statistics/libgnunetstatistics.la \
594  $(top_builddir)/src/hello/libgnunethello.la \
595  $(top_builddir)/src/util/libgnunetutil.la  \
596  $(top_builddir)/src/transport/libgnunettransporttesting.la
597
598 test_plugin_wlan_SOURCES = \
599  test_plugin_transport.c
600 test_plugin_wlan_LDADD = \
601  $(top_builddir)/src/transport/libgnunettransport.la \
602  $(top_builddir)/src/statistics/libgnunetstatistics.la \
603  $(top_builddir)/src/hello/libgnunethello.la \
604  $(top_builddir)/src/util/libgnunetutil.la  \
605  $(top_builddir)/src/transport/libgnunettransporttesting.la 
606
607
608 test_http_common_SOURCES = \
609  test_http_common.c plugin_transport_http_common.c
610 test_http_common_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_http_server_SOURCES = \
618  test_plugin_transport.c
619 test_plugin_http_server_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_https_server_SOURCES = \
627  test_plugin_transport.c
628 test_plugin_https_server_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_http_client_SOURCES = \
636  test_plugin_transport.c
637 test_plugin_http_client_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_plugin_https_client_SOURCES = \
645  test_plugin_transport.c
646 test_plugin_https_client_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_transport_api_tcp_SOURCES = \
654  test_transport_api.c
655 test_transport_api_tcp_LDADD = \
656  $(top_builddir)/src/transport/libgnunettransport.la \
657  $(top_builddir)/src/hello/libgnunethello.la \
658  $(top_builddir)/src/util/libgnunetutil.la  \
659  $(top_builddir)/src/transport/libgnunettransporttesting.la
660
661 test_transport_api_bidirectional_connect_SOURCES = \
662  test_transport_api_bidirectional_connect.c
663 test_transport_api_bidirectional_connect_LDADD = \
664  $(top_builddir)/src/transport/libgnunettransport.la \
665  $(top_builddir)/src/hello/libgnunethello.la \
666  $(top_builddir)/src/util/libgnunetutil.la  \
667  $(top_builddir)/src/transport/libgnunettransporttesting.la
668
669 test_transport_api_restart_1peer_SOURCES = \
670  test_transport_api_restart_1peer.c
671 test_transport_api_restart_1peer_LDADD = \
672  $(top_builddir)/src/transport/libgnunettransport.la \
673  $(top_builddir)/src/hello/libgnunethello.la \
674  $(top_builddir)/src/statistics/libgnunetstatistics.la \
675  $(top_builddir)/src/util/libgnunetutil.la \
676  $(top_builddir)/src/transport/libgnunettransporttesting.la 
677
678 test_transport_api_restart_2peers_SOURCES = \
679  test_transport_api_restart_2peers.c
680 test_transport_api_restart_2peers_LDADD = \
681  $(top_builddir)/src/transport/libgnunettransport.la \
682  $(top_builddir)/src/hello/libgnunethello.la \
683  $(top_builddir)/src/statistics/libgnunetstatistics.la \
684  $(top_builddir)/src/util/libgnunetutil.la \
685  $(top_builddir)/src/transport/libgnunettransporttesting.la 
686
687 test_transport_api_limited_sockets_tcp_SOURCES = \
688  test_transport_api_limited_sockets.c
689 test_transport_api_limited_sockets_tcp_LDADD = \
690  $(top_builddir)/src/transport/libgnunettransport.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_nat_SOURCES = \
696  test_transport_api.c
697 test_transport_api_tcp_nat_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_manipulation_send_tcp_SOURCES = \
704  test_transport_api_manipulation_send_tcp.c
705 test_transport_api_manipulation_send_tcp_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_manipulation_recv_tcp_SOURCES = \
712  test_transport_api_manipulation_recv_tcp.c
713 test_transport_api_manipulation_recv_tcp_LDADD = \
714  $(top_builddir)/src/transport/libgnunettransport.la \
715  $(top_builddir)/src/hello/libgnunethello.la \
716  $(top_builddir)/src/util/libgnunetutil.la \
717  $(top_builddir)/src/transport/libgnunettransporttesting.la 
718
719 test_transport_api_manipulation_cfg_SOURCES = \
720  test_transport_api_manipulation_cfg.c
721 test_transport_api_manipulation_cfg_LDADD = \
722  $(top_builddir)/src/transport/libgnunettransport.la \
723  $(top_builddir)/src/hello/libgnunethello.la \
724  $(top_builddir)/src/util/libgnunetutil.la \
725  $(top_builddir)/src/transport/libgnunettransporttesting.la 
726
727
728
729 test_transport_api_reliability_tcp_SOURCES = \
730  test_transport_api_reliability.c
731 test_transport_api_reliability_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_timeout_tcp_SOURCES = \
738  test_transport_api_timeout.c
739 test_transport_api_timeout_tcp_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_timeout_unix_SOURCES = \
746  test_transport_api_timeout.c
747 test_transport_api_timeout_unix_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_reliability_tcp_nat_SOURCES = \
754  test_transport_api_reliability.c
755 test_transport_api_reliability_tcp_nat_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_reliability_wlan_SOURCES = \
762  test_transport_api_reliability.c
763 test_transport_api_reliability_wlan_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 test_transport_api_unreliability_wlan_SOURCES = \
770  test_transport_api_unreliability.c
771 test_transport_api_unreliability_wlan_LDADD = \
772  $(top_builddir)/src/transport/libgnunettransport.la \
773  $(top_builddir)/src/hello/libgnunethello.la \
774  $(top_builddir)/src/util/libgnunetutil.la \
775  $(top_builddir)/src/transport/libgnunettransporttesting.la 
776
777 test_transport_api_udp_SOURCES = \
778  test_transport_api.c
779 test_transport_api_udp_LDADD = \
780  $(top_builddir)/src/transport/libgnunettransport.la \
781  $(top_builddir)/src/hello/libgnunethello.la \
782  $(top_builddir)/src/util/libgnunetutil.la  \
783  $(top_builddir)/src/transport/libgnunettransporttesting.la
784
785 test_transport_api_timeout_udp_SOURCES = \
786  test_transport_api_timeout.c
787 test_transport_api_timeout_udp_LDADD = \
788  $(top_builddir)/src/transport/libgnunettransport.la \
789  $(top_builddir)/src/hello/libgnunethello.la \
790  $(top_builddir)/src/util/libgnunetutil.la \
791  $(top_builddir)/src/transport/libgnunettransporttesting.la  
792
793 test_transport_api_udp_nat_SOURCES = \
794  test_transport_api.c
795 test_transport_api_udp_nat_LDADD = \
796  $(top_builddir)/src/transport/libgnunettransport.la \
797  $(top_builddir)/src/hello/libgnunethello.la \
798  $(top_builddir)/src/util/libgnunetutil.la  \
799  $(top_builddir)/src/transport/libgnunettransporttesting.la  
800
801 test_transport_api_unix_SOURCES = \
802  test_transport_api.c
803 test_transport_api_unix_LDADD = \
804  $(top_builddir)/src/transport/libgnunettransport.la \
805  $(top_builddir)/src/hello/libgnunethello.la \
806  $(top_builddir)/src/util/libgnunetutil.la \
807  $(top_builddir)/src/transport/libgnunettransporttesting.la 
808
809 # HTTP tests
810 test_transport_api_http_SOURCES = \
811  test_transport_api.c
812 test_transport_api_http_LDADD = \
813  $(top_builddir)/src/transport/libgnunettransport.la \
814  $(top_builddir)/src/hello/libgnunethello.la \
815  $(top_builddir)/src/util/libgnunetutil.la \
816  $(top_builddir)/src/transport/libgnunettransporttesting.la
817
818 test_transport_api_http_reverse_SOURCES = \
819  test_transport_api.c
820 test_transport_api_http_reverse_LDADD = \
821  $(top_builddir)/src/transport/libgnunettransport.la \
822  $(top_builddir)/src/hello/libgnunethello.la \
823  $(top_builddir)/src/util/libgnunetutil.la \
824  $(top_builddir)/src/transport/libgnunettransporttesting.la
825
826 test_transport_api_timeout_http_SOURCES = \
827  test_transport_api_timeout.c
828 test_transport_api_timeout_http_LDADD = \
829  $(top_builddir)/src/transport/libgnunettransport.la \
830  $(top_builddir)/src/hello/libgnunethello.la \
831  $(top_builddir)/src/util/libgnunetutil.la \
832  $(top_builddir)/src/transport/libgnunettransporttesting.la  
833
834 test_transport_api_reliability_http_SOURCES = \
835  test_transport_api_reliability.c
836 test_transport_api_reliability_http_LDADD = \
837  $(top_builddir)/src/transport/libgnunettransport.la \
838  $(top_builddir)/src/hello/libgnunethello.la \
839  $(top_builddir)/src/util/libgnunetutil.la \
840  $(top_builddir)/src/transport/libgnunettransporttesting.la 
841
842 test_quota_compliance_http_SOURCES = \
843  test_quota_compliance.c
844 test_quota_compliance_http_LDADD = \
845  $(top_builddir)/src/transport/libgnunettransport.la \
846  $(top_builddir)/src/hello/libgnunethello.la \
847  $(top_builddir)/src/util/libgnunetutil.la \
848  $(top_builddir)/src/transport/libgnunettransporttesting.la 
849
850 test_quota_compliance_http_asymmetric_SOURCES = \
851  test_quota_compliance.c
852 test_quota_compliance_http_asymmetric_LDADD = \
853  $(top_builddir)/src/transport/libgnunettransport.la \
854  $(top_builddir)/src/hello/libgnunethello.la \
855  $(top_builddir)/src/util/libgnunetutil.la \
856  $(top_builddir)/src/transport/libgnunettransporttesting.la
857
858 test_quota_compliance_https_SOURCES = \
859  test_quota_compliance.c
860 test_quota_compliance_https_LDADD = \
861  $(top_builddir)/src/transport/libgnunettransport.la \
862  $(top_builddir)/src/hello/libgnunethello.la \
863  $(top_builddir)/src/util/libgnunetutil.la \
864  $(top_builddir)/src/transport/libgnunettransporttesting.la
865
866 test_quota_compliance_https_asymmetric_SOURCES = \
867  test_quota_compliance.c
868 test_quota_compliance_https_asymmetric_LDADD = \
869  $(top_builddir)/src/transport/libgnunettransport.la \
870  $(top_builddir)/src/hello/libgnunethello.la \
871  $(top_builddir)/src/util/libgnunetutil.la \
872  $(top_builddir)/src/transport/libgnunettransporttesting.la
873
874 # HTTPS tests
875 test_transport_api_https_SOURCES = \
876  test_transport_api.c
877 test_transport_api_https_LDADD = \
878  $(top_builddir)/src/transport/libgnunettransport.la \
879  $(top_builddir)/src/hello/libgnunethello.la \
880  $(top_builddir)/src/util/libgnunetutil.la  \
881  $(top_builddir)/src/transport/libgnunettransporttesting.la 
882
883 test_transport_api_timeout_https_SOURCES = \
884  test_transport_api_timeout.c
885 test_transport_api_timeout_https_LDADD = \
886  $(top_builddir)/src/transport/libgnunettransport.la \
887  $(top_builddir)/src/hello/libgnunethello.la \
888  $(top_builddir)/src/util/libgnunetutil.la \
889  $(top_builddir)/src/transport/libgnunettransporttesting.la  
890
891
892 test_transport_api_reliability_https_SOURCES = \
893  test_transport_api_reliability.c
894 test_transport_api_reliability_https_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_transport_api_unreliability_unix_SOURCES = \
901  test_transport_api_unreliability.c
902 test_transport_api_unreliability_unix_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_transport_api_unreliability_udp_SOURCES = \
909  test_transport_api_unreliability.c
910 test_transport_api_unreliability_udp_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_transport_api_unreliability_constant_udp_SOURCES = \
917  test_transport_api_unreliability_constant.c
918 test_transport_api_unreliability_constant_udp_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 if LINUX
925 test_transport_api_wlan_SOURCES = \
926  test_transport_api.c
927 test_transport_api_wlan_LDADD = \
928  $(top_builddir)/src/transport/libgnunettransport.la \
929  $(top_builddir)/src/hello/libgnunethello.la \
930  $(top_builddir)/src/util/libgnunetutil.la \
931  $(top_builddir)/src/transport/libgnunettransporttesting.la  
932 endif
933
934 test_quota_compliance_tcp_SOURCES = \
935  test_quota_compliance.c
936 test_quota_compliance_tcp_LDADD = \
937  $(top_builddir)/src/transport/libgnunettransport.la \
938  $(top_builddir)/src/hello/libgnunethello.la \
939  $(top_builddir)/src/util/libgnunetutil.la \
940  $(top_builddir)/src/transport/libgnunettransporttesting.la 
941
942 test_quota_compliance_tcp_asymmetric_SOURCES = \
943  test_quota_compliance.c
944 test_quota_compliance_tcp_asymmetric_LDADD = \
945  $(top_builddir)/src/transport/libgnunettransport.la \
946  $(top_builddir)/src/hello/libgnunethello.la \
947  $(top_builddir)/src/util/libgnunetutil.la \
948  $(top_builddir)/src/transport/libgnunettransporttesting.la 
949
950 test_quota_compliance_udp_SOURCES = \
951  test_quota_compliance.c
952 test_quota_compliance_udp_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_quota_compliance_unix_SOURCES = \
959  test_quota_compliance.c
960 test_quota_compliance_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_quota_compliance_unix_asymmetric_SOURCES = \
967  test_quota_compliance.c
968 test_quota_compliance_unix_asymmetric_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_quota_compliance_wlan_SOURCES = \
975  test_quota_compliance.c
976 test_quota_compliance_wlan_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 test_quota_compliance_wlan_asymmetric_SOURCES = \
983  test_quota_compliance.c
984 test_quota_compliance_wlan_asymmetric_LDADD = \
985  $(top_builddir)/src/transport/libgnunettransport.la \
986  $(top_builddir)/src/hello/libgnunethello.la \
987  $(top_builddir)/src/util/libgnunetutil.la \
988  $(top_builddir)/src/transport/libgnunettransporttesting.la
989
990 test_transport_api_multi_SOURCES = \
991  test_transport_api.c
992 test_transport_api_multi_LDADD = \
993  $(top_builddir)/src/transport/libgnunettransport.la \
994  $(top_builddir)/src/hello/libgnunethello.la \
995  $(top_builddir)/src/util/libgnunetutil.la \
996  $(top_builddir)/src/transport/libgnunettransporttesting.la 
997
998
999 EXTRA_DIST = \
1000 test_plugin_hostkey \
1001 test_plugin_hostkey.ecc \
1002 template_cfg_peer1.conf\
1003 template_cfg_peer2.conf\
1004 test_plugin_transport_data.conf\
1005 test_plugin_transport_data_udp.conf\
1006 test_quota_compliance_data.conf\
1007 test_quota_compliance_http_peer1.conf\
1008 test_quota_compliance_http_peer2.conf\
1009 test_quota_compliance_https_peer1.conf\
1010 test_quota_compliance_https_peer2.conf\
1011 test_quota_compliance_tcp_peer1.conf\
1012 test_quota_compliance_tcp_peer2.conf\
1013 test_quota_compliance_udp_peer1.conf\
1014 test_quota_compliance_udp_peer2.conf\
1015 test_quota_compliance_unix_peer1.conf\
1016 test_quota_compliance_unix_peer2.conf\
1017 test_quota_compliance_wlan_peer1.conf\
1018 test_quota_compliance_wlan_peer2.conf\
1019 test_quota_compliance_http_asymmetric_peer1.conf\
1020 test_quota_compliance_http_asymmetric_peer2.conf\
1021 test_quota_compliance_https_asymmetric_peer1.conf\
1022 test_quota_compliance_https_asymmetric_peer2.conf\
1023 test_quota_compliance_tcp_asymmetric_peer1.conf\
1024 test_quota_compliance_tcp_asymmetric_peer2.conf\
1025 test_quota_compliance_unix_asymmetric_peer1.conf\
1026 test_quota_compliance_unix_asymmetric_peer2.conf\
1027 test_quota_compliance_wlan_asymmetric_peer1.conf\
1028 test_quota_compliance_wlan_asymmetric_peer2.conf\
1029 test_transport_api_data.conf\
1030 test_transport_api_http_peer1.conf\
1031 test_transport_api_http_peer2.conf\
1032 test_transport_api_https_peer1.conf\
1033 test_transport_api_https_peer2.conf\
1034 test_transport_api_limited_sockets_tcp_peer1.conf\
1035 test_transport_api_limited_sockets_tcp_peer2.conf\
1036 test_transport_api_timeout_tcp_peer1.conf\
1037 test_transport_api_timeout_tcp_peer2.conf\
1038 test_transport_api_multi_peer1.conf\
1039 test_transport_api_multi_peer2.conf\
1040 test_transport_api_reliability_http_peer1.conf\
1041 test_transport_api_reliability_http_peer2.conf\
1042 test_transport_api_reliability_https_peer1.conf\
1043 test_transport_api_reliability_https_peer2.conf\
1044 test_transport_api_reliability_tcp_nat_peer1.conf\
1045 test_transport_api_reliability_tcp_nat_peer2.conf\
1046 test_transport_api_reliability_tcp_peer1.conf\
1047 test_transport_api_reliability_tcp_peer2.conf\
1048 test_transport_api_reliability_wlan_peer1.conf\
1049 test_transport_api_reliability_wlan_peer2.conf\
1050 test_transport_api_bidirectional_connect_peer1.conf\
1051 test_transport_api_bidirectional_connect_peer2.conf\
1052 test_transport_api_manipulation_send_tcp_peer1.conf\
1053 test_transport_api_manipulation_send_tcp_peer2.conf\
1054 test_transport_api_manipulation_recv_tcp_peer1.conf\
1055 test_transport_api_manipulation_recv_tcp_peer2.conf\
1056 test_transport_api_manipulation_cfg_peer1.conf\
1057 test_transport_api_manipulation_cfg_peer2.conf\
1058 test_transport_api_tcp_nat_peer1.conf\
1059 test_transport_api_tcp_nat_peer2.conf\
1060 test_transport_api_tcp_peer1.conf\
1061 test_transport_api_tcp_peer2.conf\
1062 test_transport_api_udp_nat_peer1.conf\
1063 test_transport_api_udp_nat_peer2.conf\
1064 test_transport_api_udp_peer1.conf\
1065 test_transport_api_udp_peer2.conf\
1066 test_transport_api_timeout_udp_peer1.conf\
1067 test_transport_api_timeout_udp_peer2.conf\
1068 test_transport_api_unix_peer1.conf\
1069 test_transport_api_unix_peer2.conf\
1070 test_transport_api_timeout_unix_peer1.conf\
1071 test_transport_api_timeout_unix_peer2.conf\
1072 test_transport_api_unreliability_udp_peer1.conf\
1073 test_transport_api_unreliability_udp_peer2.conf\
1074 test_transport_api_unreliability_unix_peer1.conf\
1075 test_transport_api_unreliability_unix_peer2.conf\
1076 test_transport_api_unreliability_wlan_peer1.conf\
1077 test_transport_api_unreliability_wlan_peer2.conf\
1078 test_transport_api_wlan_peer1.conf\
1079 test_transport_api_wlan_peer2.conf\
1080 test_transport_defaults.conf\
1081 test_transport_startonly.conf\
1082 test_transport_api_disconnect_tcp_peer1.conf\
1083 test_transport_api_disconnect_tcp_peer2.conf\
1084 test_transport_api_timeout_http_peer1.conf\
1085 test_transport_api_timeout_http_peer2.conf\
1086 test_transport_api_timeout_https_peer1.conf\
1087 test_transport_api_timeout_https_peer2.conf\
1088 test_transport_api_unreliability_constant_udp_peer1.conf\
1089 test_transport_api_unreliability_constant_udp_peer2.conf\
1090 test_transport_blacklisting_cfg_peer1.conf \
1091 test_transport_blacklisting_cfg_peer2.conf \
1092 test_transport_blacklisting_cfg_blp_peer1_full.conf\
1093 test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1094 test_transport_blacklisting_cfg_blp_peer2_full.conf\
1095 test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1096 test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1097 test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1098 test_transport_api_http_reverse_peer1.conf \
1099 test_transport_api_http_reverse_peer2.conf