4524f9897d481f267e93e4596ac0b9795778bfdf
[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   $(BT_PLUGIN_LA) \
215   libgnunet_plugin_transport_template.la
216
217 libgnunet_plugin_transport_tcp_la_SOURCES = \
218   plugin_transport_tcp.c
219 libgnunet_plugin_transport_tcp_la_LIBADD = \
220   $(top_builddir)/src/hello/libgnunethello.la \
221   $(top_builddir)/src/statistics/libgnunetstatistics.la \
222   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
223   $(top_builddir)/src/nat/libgnunetnat.la \
224   $(top_builddir)/src/util/libgnunetutil.la \
225   $(LTLIBINTL)
226 libgnunet_plugin_transport_tcp_la_LDFLAGS = \
227  $(GN_PLUGIN_LDFLAGS)
228
229 libgnunet_plugin_transport_template_la_SOURCES = \
230   plugin_transport_template.c
231 libgnunet_plugin_transport_template_la_LIBADD = \
232   $(top_builddir)/src/util/libgnunetutil.la \
233   $(LTLIBINTL)
234 libgnunet_plugin_transport_template_la_LDFLAGS = \
235  $(GN_PLUGIN_LDFLAGS)
236
237 libgnunet_plugin_transport_wlan_la_SOURCES = \
238   plugin_transport_wlan.c plugin_transport_wlan.h
239 libgnunet_plugin_transport_wlan_la_LIBADD = \
240   $(top_builddir)/src/hello/libgnunethello.la \
241   $(top_builddir)/src/statistics/libgnunetstatistics.la \
242   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
243   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
244   $(top_builddir)/src/util/libgnunetutil.la 
245 libgnunet_plugin_transport_wlan_la_LDFLAGS = \
246   $(GN_PLUGIN_LDFLAGS)
247
248 libgnunet_plugin_transport_bluetooth_la_SOURCES = \
249   plugin_transport_bluetooth.c plugin_transport_wlan.h
250 libgnunet_plugin_transport_bluetooth_la_LIBADD = \
251   $(top_builddir)/src/hello/libgnunethello.la \
252   $(top_builddir)/src/statistics/libgnunetstatistics.la \
253   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
254   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
255   $(top_builddir)/src/util/libgnunetutil.la
256 libgnunet_plugin_transport_bluetooth_la_LDFLAGS = \
257   $(GN_PLUGIN_LDFLAGS)
258
259 libgnunet_plugin_transport_udp_la_SOURCES = \
260   plugin_transport_udp.c plugin_transport_udp.h \
261   plugin_transport_udp_broadcasting.c
262 libgnunet_plugin_transport_udp_la_LIBADD = \
263   $(top_builddir)/src/hello/libgnunethello.la \
264   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
265   $(top_builddir)/src/statistics/libgnunetstatistics.la \
266   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
267   $(top_builddir)/src/nat/libgnunetnat.la \
268   $(top_builddir)/src/util/libgnunetutil.la \
269   $(LTLIBINTL)
270 libgnunet_plugin_transport_udp_la_LDFLAGS = \
271  $(GN_PLUGIN_LDFLAGS)
272
273 libgnunet_plugin_transport_unix_la_SOURCES = \
274   plugin_transport_unix.c
275 libgnunet_plugin_transport_unix_la_LIBADD = \
276   $(top_builddir)/src/hello/libgnunethello.la \
277   $(top_builddir)/src/statistics/libgnunetstatistics.la \
278   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
279   $(top_builddir)/src/util/libgnunetutil.la \
280   $(LTLIBINTL)
281 libgnunet_plugin_transport_unix_la_LDFLAGS = \
282  $(GN_PLUGIN_LDFLAGS)
283
284
285 libgnunet_plugin_transport_http_client_la_SOURCES = \
286   plugin_transport_http_client.c plugin_transport_http_common.c plugin_transport_http_common.h
287 libgnunet_plugin_transport_http_client_la_LIBADD = \
288   $(top_builddir)/src/hello/libgnunethello.la \
289   $(top_builddir)/src/statistics/libgnunetstatistics.la \
290   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
291   @LIBCURL@ \
292   $(top_builddir)/src/nat/libgnunetnat.la \
293   $(top_builddir)/src/util/libgnunetutil.la 
294 libgnunet_plugin_transport_http_client_la_LDFLAGS = \
295  $(GN_PLUGIN_LDFLAGS)
296 libgnunet_plugin_transport_http_client_la_CFLAGS = \
297  $(CFLAGS) 
298 libgnunet_plugin_transport_http_client_la_CPPFLAGS = \
299  @LIBCURL_CPPFLAGS@
300
301
302 libgnunet_plugin_transport_http_server_la_SOURCES = \
303   plugin_transport_http_server.c plugin_transport_http_common.c 
304 libgnunet_plugin_transport_http_server_la_LIBADD = \
305   $(top_builddir)/src/hello/libgnunethello.la \
306   $(top_builddir)/src/statistics/libgnunetstatistics.la \
307   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
308   $(top_builddir)/src/nat/libgnunetnat.la \
309   $(top_builddir)/src/util/libgnunetutil.la 
310 libgnunet_plugin_transport_http_server_la_LDFLAGS = \
311  $(GN_LIBMHD) \
312  $(GN_PLUGIN_LDFLAGS)
313 libgnunet_plugin_transport_http_server_la_CFLAGS = \
314  $(CFLAGS) 
315
316 libgnunet_plugin_transport_https_client_la_SOURCES = \
317   plugin_transport_http_client.c plugin_transport_http_common.c
318 libgnunet_plugin_transport_https_client_la_LIBADD = \
319   $(top_builddir)/src/hello/libgnunethello.la \
320   $(top_builddir)/src/statistics/libgnunetstatistics.la \
321   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
322   @LIBCURL@ \
323   $(top_builddir)/src/nat/libgnunetnat.la \
324   $(top_builddir)/src/util/libgnunetutil.la 
325 libgnunet_plugin_transport_https_client_la_LDFLAGS = \
326  $(GN_PLUGIN_LDFLAGS)
327 libgnunet_plugin_transport_https_client_la_CFLAGS = \
328  $(CFLAGS) -DBUILD_HTTPS 
329 libgnunet_plugin_transport_https_client_la_CPPFLAGS = \
330  @LIBCURL_CPPFLAGS@
331
332
333 libgnunet_plugin_transport_https_server_la_SOURCES = \
334   plugin_transport_http_server.c plugin_transport_http_common.c
335 libgnunet_plugin_transport_https_server_la_LIBADD = \
336   $(top_builddir)/src/hello/libgnunethello.la \
337   $(top_builddir)/src/statistics/libgnunetstatistics.la \
338   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
339   $(top_builddir)/src/nat/libgnunetnat.la \
340   $(top_builddir)/src/util/libgnunetutil.la 
341 libgnunet_plugin_transport_https_server_la_LDFLAGS = \
342  $(GN_LIBMHD) \
343  $(GN_PLUGIN_LDFLAGS)
344 libgnunet_plugin_transport_https_server_la_CFLAGS = \
345  $(CFLAGS) -DBUILD_HTTPS 
346
347
348 if HAVE_TESTING
349 check_PROGRAMS = \
350  test_transport_testing_startstop \
351  test_transport_testing_restart \
352  test_transport_testing \
353  test_transport_startonly \
354  test_plugin_tcp \
355  test_plugin_udp \
356  $(UNIX_TEST) \
357  $(WLAN_PLUGIN_TEST) \
358  test_http_common \
359  $(HTTP_CLIENT_PLUGIN_TEST) \
360  $(HTTPS_CLIENT_PLUGIN_TEST) \
361  $(HTTP_SERVER_PLUGIN_TEST) \
362  $(HTTPS_SERVER_PLUGIN_TEST) \
363  test_transport_api_blacklisting \
364  test_transport_api_disconnect_tcp \
365  test_transport_api_bidirectional_connect \
366  test_transport_api_tcp \
367  test_transport_api_restart_1peer \
368  test_transport_api_restart_2peers \
369  test_transport_api_timeout_tcp \
370  test_transport_api_limited_sockets_tcp \
371  test_transport_api_tcp_nat \
372  test_transport_api_udp \
373  test_transport_api_timeout_udp \
374  $(UNIX_PLUGIN_TEST) \
375  $(UNIX_PLUGIN_TIMEOUT_TEST) \
376  test_transport_api_udp_nat \
377  $(HTTP_API_TEST) \
378  $(HTTP_REVERSE_API_TEST) \
379  $(HTTP_API_TIMEOUT_TEST) \
380  $(HTTPS_API_TEST) \
381  $(HTTPS_API_TIMEOUT_TEST) \
382  $(WLAN_API_TEST) \
383  test_transport_api_multi \
384  test_transport_blacklisting_no_bl \
385  test_transport_blacklisting_outbound_bl_full \
386  test_transport_blacklisting_outbound_bl_plugin \
387  test_transport_blacklisting_inbound_bl_plugin \
388  test_transport_blacklisting_inbound_bl_full \
389  test_transport_blacklisting_multiple_plugins \
390  test_transport_api_manipulation_send_tcp \
391  test_transport_api_manipulation_recv_tcp \
392  test_transport_api_manipulation_cfg \
393  test_transport_api_reliability_tcp \
394  test_transport_api_reliability_tcp_nat \
395  test_transport_api_unreliability_udp \
396  test_transport_api_unreliability_constant_udp \
397  $(UNIX_REL_TEST) \
398  $(HTTP_REL_TEST) \
399  $(HTTPS_REL_TEST) \
400  $(WLAN_REL_TEST) \
401  $(WLAN_UREL_TEST) \
402  test_quota_compliance_tcp \
403  test_quota_compliance_tcp_asymmetric \
404  test_quota_compliance_udp \
405  $(UNIX_QUOTA_TEST) \
406  $(HTTP_QUOTA_TEST) \
407  $(HTTPS_QUOTA_TEST) \
408  $(WLAN_QUOTA_TEST)
409 endif
410
411 if ENABLE_TEST_RUN
412 TESTS = \
413  test_transport_testing_startstop \
414  test_transport_testing_restart \
415  test_transport_testing \
416  test_transport_startonly \
417  test_plugin_tcp \
418  test_plugin_udp \
419  $(UNIX_TEST) \
420  $(WLAN_PLUGIN_TEST) \
421  test_transport_api_blacklisting \
422  test_transport_api_disconnect_tcp \
423  test_transport_api_bidirectional_connect \
424  test_transport_api_tcp \
425  test_transport_api_restart_1peer \
426  test_transport_api_restart_2peers \
427  test_transport_api_timeout_tcp \
428  test_transport_api_limited_sockets_tcp \
429  test_transport_api_tcp_nat \
430  test_transport_api_udp \
431  test_transport_api_timeout_udp \
432  $(UNIX_PLUGIN_TEST) \
433  $(UNIX_PLUGIN_TIMEOUT_TEST) \
434  test_transport_api_udp_nat \
435  $(HTTP_API_TEST) \
436  $(HTTP_API_TIMEOUT_TEST) \
437  $(HTTPS_API_TEST) \
438  $(HTTPS_API_TIMEOUT_TEST) \
439  $(WLAN_API_TEST) \
440  test_transport_api_multi \
441  test_transport_blacklisting_no_bl \
442  test_transport_blacklisting_outbound_bl_full \
443  test_transport_blacklisting_outbound_bl_plugin \
444  test_transport_blacklisting_inbound_bl_plugin \
445  test_transport_blacklisting_inbound_bl_full \
446  test_transport_blacklisting_multiple_plugins \
447  test_transport_api_manipulation_send_tcp \
448  test_transport_api_manipulation_recv_tcp \
449  test_transport_api_manipulation_cfg \
450  test_transport_api_reliability_tcp \
451  test_transport_api_reliability_tcp_nat \
452  test_transport_api_unreliability_udp \
453  test_transport_api_unreliability_constant_udp \
454  $(UNIX_REL_TEST) \
455  $(HTTP_REL_TEST) \
456  $(HTTPS_REL_TEST) \
457  $(WLAN_REL_TEST) \
458  $(WLAN_UREL_TEST) \
459  test_quota_compliance_tcp \
460  test_quota_compliance_tcp_asymmetric \
461  test_quota_compliance_udp \
462  $(UNIX_QUOTA_TEST) \
463  $(HTTP_QUOTA_TEST) \
464  $(HTTPS_QUOTA_TEST)
465 endif
466
467 test_transport_testing_startstop_SOURCES = \
468  test_transport_testing_startstop.c
469 test_transport_testing_startstop_LDADD = \
470  $(top_builddir)/src/util/libgnunetutil.la \
471  $(top_builddir)/src/transport/libgnunettransport.la \
472  $(top_builddir)/src/hello/libgnunethello.la \
473  $(top_builddir)/src/transport/libgnunettransporttesting.la 
474
475 test_transport_testing_restart_SOURCES = \
476  test_transport_testing_restart.c
477 test_transport_testing_restart_LDADD = \
478  $(top_builddir)/src/util/libgnunetutil.la \
479  $(top_builddir)/src/transport/libgnunettransport.la \
480  $(top_builddir)/src/hello/libgnunethello.la \
481  $(top_builddir)/src/transport/libgnunettransporttesting.la 
482
483 test_transport_testing_SOURCES = \
484  test_transport_testing.c
485 test_transport_testing_LDADD = \
486  $(top_builddir)/src/util/libgnunetutil.la \
487  $(top_builddir)/src/transport/libgnunettransport.la \
488  $(top_builddir)/src/hello/libgnunethello.la \
489  $(top_builddir)/src/transport/libgnunettransporttesting.la 
490
491 test_transport_api_blacklisting_SOURCES = \
492  test_transport_api_blacklisting.c
493 test_transport_api_blacklisting_LDADD = \
494  $(top_builddir)/src/transport/libgnunettransport.la \
495  $(top_builddir)/src/hello/libgnunethello.la \
496  $(top_builddir)/src/statistics/libgnunetstatistics.la \
497  $(top_builddir)/src/util/libgnunetutil.la \
498  $(top_builddir)/src/transport/libgnunettransporttesting.la 
499
500 test_transport_blacklisting_no_bl_SOURCES = \
501  test_transport_blacklisting.c
502 test_transport_blacklisting_no_bl_LDADD = \
503  $(top_builddir)/src/transport/libgnunettransport.la \
504  $(top_builddir)/src/hello/libgnunethello.la \
505  $(top_builddir)/src/statistics/libgnunetstatistics.la \
506  $(top_builddir)/src/util/libgnunetutil.la \
507  $(top_builddir)/src/transport/libgnunettransporttesting.la 
508  
509 test_transport_blacklisting_outbound_bl_full_SOURCES = \
510  test_transport_blacklisting.c
511 test_transport_blacklisting_outbound_bl_full_LDADD = \
512  $(top_builddir)/src/transport/libgnunettransport.la \
513  $(top_builddir)/src/hello/libgnunethello.la \
514  $(top_builddir)/src/statistics/libgnunetstatistics.la \
515  $(top_builddir)/src/util/libgnunetutil.la \
516  $(top_builddir)/src/transport/libgnunettransporttesting.la  
517  
518 test_transport_blacklisting_outbound_bl_plugin_SOURCES = \
519  test_transport_blacklisting.c
520 test_transport_blacklisting_outbound_bl_plugin_LDADD = \
521  $(top_builddir)/src/transport/libgnunettransport.la \
522  $(top_builddir)/src/hello/libgnunethello.la \
523  $(top_builddir)/src/statistics/libgnunetstatistics.la \
524  $(top_builddir)/src/util/libgnunetutil.la \
525  $(top_builddir)/src/transport/libgnunettransporttesting.la   
526
527 test_transport_blacklisting_inbound_bl_full_SOURCES = \
528  test_transport_blacklisting.c
529 test_transport_blacklisting_inbound_bl_full_LDADD = \
530  $(top_builddir)/src/transport/libgnunettransport.la \
531  $(top_builddir)/src/hello/libgnunethello.la \
532  $(top_builddir)/src/statistics/libgnunetstatistics.la \
533  $(top_builddir)/src/util/libgnunetutil.la \
534  $(top_builddir)/src/transport/libgnunettransporttesting.la   
535  
536 test_transport_blacklisting_inbound_bl_plugin_SOURCES = \
537  test_transport_blacklisting.c
538 test_transport_blacklisting_inbound_bl_plugin_LDADD = \
539  $(top_builddir)/src/transport/libgnunettransport.la \
540  $(top_builddir)/src/hello/libgnunethello.la \
541  $(top_builddir)/src/statistics/libgnunetstatistics.la \
542  $(top_builddir)/src/util/libgnunetutil.la \
543  $(top_builddir)/src/transport/libgnunettransporttesting.la  
544
545 test_transport_blacklisting_multiple_plugins_SOURCES = \
546  test_transport_blacklisting.c
547 test_transport_blacklisting_multiple_plugins_LDADD = \
548  $(top_builddir)/src/transport/libgnunettransport.la \
549  $(top_builddir)/src/hello/libgnunethello.la \
550  $(top_builddir)/src/statistics/libgnunetstatistics.la \
551  $(top_builddir)/src/util/libgnunetutil.la \
552  $(top_builddir)/src/transport/libgnunettransporttesting.la  
553
554
555 test_transport_api_disconnect_tcp_SOURCES = \
556  test_transport_api_disconnect.c
557 test_transport_api_disconnect_tcp_LDADD = \
558  $(top_builddir)/src/transport/libgnunettransport.la \
559  $(top_builddir)/src/hello/libgnunethello.la \
560  $(top_builddir)/src/statistics/libgnunetstatistics.la \
561  $(top_builddir)/src/util/libgnunetutil.la \
562  $(top_builddir)/src/transport/libgnunettransporttesting.la 
563
564 test_transport_startonly_SOURCES = \
565  test_transport_startonly.c
566 test_transport_startonly_LDADD = \
567  $(top_builddir)/src/transport/libgnunettransport.la \
568  $(top_builddir)/src/hello/libgnunethello.la \
569  $(top_builddir)/src/statistics/libgnunetstatistics.la \
570  $(top_builddir)/src/util/libgnunetutil.la \
571  $(top_builddir)/src/transport/libgnunettransporttesting.la 
572
573 test_plugin_tcp_SOURCES = \
574  test_plugin_transport.c
575 test_plugin_tcp_LDADD = \
576  $(top_builddir)/src/transport/libgnunettransport.la \
577  $(top_builddir)/src/statistics/libgnunetstatistics.la \
578  $(top_builddir)/src/hello/libgnunethello.la \
579  $(top_builddir)/src/util/libgnunetutil.la  \
580  $(top_builddir)/src/transport/libgnunettransporttesting.la
581  
582 test_plugin_udp_SOURCES = \
583  test_plugin_transport.c
584 test_plugin_udp_LDADD = \
585  $(top_builddir)/src/transport/libgnunettransport.la \
586  $(top_builddir)/src/statistics/libgnunetstatistics.la \
587  $(top_builddir)/src/hello/libgnunethello.la \
588  $(top_builddir)/src/util/libgnunetutil.la  \
589  $(top_builddir)/src/transport/libgnunettransporttesting.la
590
591 test_plugin_unix_SOURCES = \
592  test_plugin_transport.c
593 test_plugin_unix_LDADD = \
594  $(top_builddir)/src/transport/libgnunettransport.la \
595  $(top_builddir)/src/statistics/libgnunetstatistics.la \
596  $(top_builddir)/src/hello/libgnunethello.la \
597  $(top_builddir)/src/util/libgnunetutil.la  \
598  $(top_builddir)/src/transport/libgnunettransporttesting.la
599
600 test_plugin_wlan_SOURCES = \
601  test_plugin_transport.c
602 test_plugin_wlan_LDADD = \
603  $(top_builddir)/src/transport/libgnunettransport.la \
604  $(top_builddir)/src/statistics/libgnunetstatistics.la \
605  $(top_builddir)/src/hello/libgnunethello.la \
606  $(top_builddir)/src/util/libgnunetutil.la  \
607  $(top_builddir)/src/transport/libgnunettransporttesting.la 
608
609
610 test_http_common_SOURCES = \
611  test_http_common.c plugin_transport_http_common.c
612 test_http_common_LDADD = \
613  $(top_builddir)/src/transport/libgnunettransport.la \
614  $(top_builddir)/src/statistics/libgnunetstatistics.la \
615  $(top_builddir)/src/hello/libgnunethello.la \
616  $(top_builddir)/src/util/libgnunetutil.la  \
617  $(top_builddir)/src/transport/libgnunettransporttesting.la 
618
619 test_plugin_http_server_SOURCES = \
620  test_plugin_transport.c
621 test_plugin_http_server_LDADD = \
622  $(top_builddir)/src/transport/libgnunettransport.la \
623  $(top_builddir)/src/statistics/libgnunetstatistics.la \
624  $(top_builddir)/src/hello/libgnunethello.la \
625  $(top_builddir)/src/util/libgnunetutil.la  \
626  $(top_builddir)/src/transport/libgnunettransporttesting.la 
627
628 test_plugin_https_server_SOURCES = \
629  test_plugin_transport.c
630 test_plugin_https_server_LDADD = \
631  $(top_builddir)/src/transport/libgnunettransport.la \
632  $(top_builddir)/src/statistics/libgnunetstatistics.la \
633  $(top_builddir)/src/hello/libgnunethello.la \
634  $(top_builddir)/src/util/libgnunetutil.la  \
635  $(top_builddir)/src/transport/libgnunettransporttesting.la
636
637 test_plugin_http_client_SOURCES = \
638  test_plugin_transport.c
639 test_plugin_http_client_LDADD = \
640  $(top_builddir)/src/transport/libgnunettransport.la \
641  $(top_builddir)/src/statistics/libgnunetstatistics.la \
642  $(top_builddir)/src/hello/libgnunethello.la \
643  $(top_builddir)/src/util/libgnunetutil.la  \
644  $(top_builddir)/src/transport/libgnunettransporttesting.la 
645
646 test_plugin_https_client_SOURCES = \
647  test_plugin_transport.c
648 test_plugin_https_client_LDADD = \
649  $(top_builddir)/src/transport/libgnunettransport.la \
650  $(top_builddir)/src/statistics/libgnunetstatistics.la \
651  $(top_builddir)/src/hello/libgnunethello.la \
652  $(top_builddir)/src/util/libgnunetutil.la  \
653  $(top_builddir)/src/transport/libgnunettransporttesting.la  
654
655 test_transport_api_tcp_SOURCES = \
656  test_transport_api.c
657 test_transport_api_tcp_LDADD = \
658  $(top_builddir)/src/transport/libgnunettransport.la \
659  $(top_builddir)/src/hello/libgnunethello.la \
660  $(top_builddir)/src/util/libgnunetutil.la  \
661  $(top_builddir)/src/transport/libgnunettransporttesting.la
662
663 test_transport_api_bidirectional_connect_SOURCES = \
664  test_transport_api_bidirectional_connect.c
665 test_transport_api_bidirectional_connect_LDADD = \
666  $(top_builddir)/src/transport/libgnunettransport.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_transport_api_restart_1peer_SOURCES = \
672  test_transport_api_restart_1peer.c
673 test_transport_api_restart_1peer_LDADD = \
674  $(top_builddir)/src/transport/libgnunettransport.la \
675  $(top_builddir)/src/hello/libgnunethello.la \
676  $(top_builddir)/src/statistics/libgnunetstatistics.la \
677  $(top_builddir)/src/util/libgnunetutil.la \
678  $(top_builddir)/src/transport/libgnunettransporttesting.la 
679
680 test_transport_api_restart_2peers_SOURCES = \
681  test_transport_api_restart_2peers.c
682 test_transport_api_restart_2peers_LDADD = \
683  $(top_builddir)/src/transport/libgnunettransport.la \
684  $(top_builddir)/src/hello/libgnunethello.la \
685  $(top_builddir)/src/statistics/libgnunetstatistics.la \
686  $(top_builddir)/src/util/libgnunetutil.la \
687  $(top_builddir)/src/transport/libgnunettransporttesting.la 
688
689 test_transport_api_limited_sockets_tcp_SOURCES = \
690  test_transport_api_limited_sockets.c
691 test_transport_api_limited_sockets_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_tcp_nat_SOURCES = \
698  test_transport_api.c
699 test_transport_api_tcp_nat_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_manipulation_send_tcp_SOURCES = \
706  test_transport_api_manipulation_send_tcp.c
707 test_transport_api_manipulation_send_tcp_LDADD = \
708  $(top_builddir)/src/transport/libgnunettransport.la \
709  $(top_builddir)/src/hello/libgnunethello.la \
710  $(top_builddir)/src/util/libgnunetutil.la \
711  $(top_builddir)/src/transport/libgnunettransporttesting.la 
712
713 test_transport_api_manipulation_recv_tcp_SOURCES = \
714  test_transport_api_manipulation_recv_tcp.c
715 test_transport_api_manipulation_recv_tcp_LDADD = \
716  $(top_builddir)/src/transport/libgnunettransport.la \
717  $(top_builddir)/src/hello/libgnunethello.la \
718  $(top_builddir)/src/util/libgnunetutil.la \
719  $(top_builddir)/src/transport/libgnunettransporttesting.la 
720
721 test_transport_api_manipulation_cfg_SOURCES = \
722  test_transport_api_manipulation_cfg.c
723 test_transport_api_manipulation_cfg_LDADD = \
724  $(top_builddir)/src/transport/libgnunettransport.la \
725  $(top_builddir)/src/hello/libgnunethello.la \
726  $(top_builddir)/src/util/libgnunetutil.la \
727  $(top_builddir)/src/transport/libgnunettransporttesting.la 
728
729
730
731 test_transport_api_reliability_tcp_SOURCES = \
732  test_transport_api_reliability.c
733 test_transport_api_reliability_tcp_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_timeout_tcp_SOURCES = \
740  test_transport_api_timeout.c
741 test_transport_api_timeout_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_timeout_unix_SOURCES = \
748  test_transport_api_timeout.c
749 test_transport_api_timeout_unix_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_reliability_tcp_nat_SOURCES = \
756  test_transport_api_reliability.c
757 test_transport_api_reliability_tcp_nat_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 test_transport_api_reliability_wlan_SOURCES = \
764  test_transport_api_reliability.c
765 test_transport_api_reliability_wlan_LDADD = \
766  $(top_builddir)/src/transport/libgnunettransport.la \
767  $(top_builddir)/src/hello/libgnunethello.la \
768  $(top_builddir)/src/util/libgnunetutil.la \
769  $(top_builddir)/src/transport/libgnunettransporttesting.la 
770
771 test_transport_api_unreliability_wlan_SOURCES = \
772  test_transport_api_unreliability.c
773 test_transport_api_unreliability_wlan_LDADD = \
774  $(top_builddir)/src/transport/libgnunettransport.la \
775  $(top_builddir)/src/hello/libgnunethello.la \
776  $(top_builddir)/src/util/libgnunetutil.la \
777  $(top_builddir)/src/transport/libgnunettransporttesting.la 
778
779 test_transport_api_udp_SOURCES = \
780  test_transport_api.c
781 test_transport_api_udp_LDADD = \
782  $(top_builddir)/src/transport/libgnunettransport.la \
783  $(top_builddir)/src/hello/libgnunethello.la \
784  $(top_builddir)/src/util/libgnunetutil.la  \
785  $(top_builddir)/src/transport/libgnunettransporttesting.la
786
787 test_transport_api_timeout_udp_SOURCES = \
788  test_transport_api_timeout.c
789 test_transport_api_timeout_udp_LDADD = \
790  $(top_builddir)/src/transport/libgnunettransport.la \
791  $(top_builddir)/src/hello/libgnunethello.la \
792  $(top_builddir)/src/util/libgnunetutil.la \
793  $(top_builddir)/src/transport/libgnunettransporttesting.la  
794
795 test_transport_api_udp_nat_SOURCES = \
796  test_transport_api.c
797 test_transport_api_udp_nat_LDADD = \
798  $(top_builddir)/src/transport/libgnunettransport.la \
799  $(top_builddir)/src/hello/libgnunethello.la \
800  $(top_builddir)/src/util/libgnunetutil.la  \
801  $(top_builddir)/src/transport/libgnunettransporttesting.la  
802
803 test_transport_api_unix_SOURCES = \
804  test_transport_api.c
805 test_transport_api_unix_LDADD = \
806  $(top_builddir)/src/transport/libgnunettransport.la \
807  $(top_builddir)/src/hello/libgnunethello.la \
808  $(top_builddir)/src/util/libgnunetutil.la \
809  $(top_builddir)/src/transport/libgnunettransporttesting.la 
810
811 # HTTP tests
812 test_transport_api_http_SOURCES = \
813  test_transport_api.c
814 test_transport_api_http_LDADD = \
815  $(top_builddir)/src/transport/libgnunettransport.la \
816  $(top_builddir)/src/hello/libgnunethello.la \
817  $(top_builddir)/src/util/libgnunetutil.la \
818  $(top_builddir)/src/transport/libgnunettransporttesting.la
819
820 test_transport_api_http_reverse_SOURCES = \
821  test_transport_api.c
822 test_transport_api_http_reverse_LDADD = \
823  $(top_builddir)/src/transport/libgnunettransport.la \
824  $(top_builddir)/src/hello/libgnunethello.la \
825  $(top_builddir)/src/util/libgnunetutil.la \
826  $(top_builddir)/src/transport/libgnunettransporttesting.la
827
828 test_transport_api_timeout_http_SOURCES = \
829  test_transport_api_timeout.c
830 test_transport_api_timeout_http_LDADD = \
831  $(top_builddir)/src/transport/libgnunettransport.la \
832  $(top_builddir)/src/hello/libgnunethello.la \
833  $(top_builddir)/src/util/libgnunetutil.la \
834  $(top_builddir)/src/transport/libgnunettransporttesting.la  
835
836 test_transport_api_reliability_http_SOURCES = \
837  test_transport_api_reliability.c
838 test_transport_api_reliability_http_LDADD = \
839  $(top_builddir)/src/transport/libgnunettransport.la \
840  $(top_builddir)/src/hello/libgnunethello.la \
841  $(top_builddir)/src/util/libgnunetutil.la \
842  $(top_builddir)/src/transport/libgnunettransporttesting.la 
843
844 test_quota_compliance_http_SOURCES = \
845  test_quota_compliance.c
846 test_quota_compliance_http_LDADD = \
847  $(top_builddir)/src/transport/libgnunettransport.la \
848  $(top_builddir)/src/hello/libgnunethello.la \
849  $(top_builddir)/src/util/libgnunetutil.la \
850  $(top_builddir)/src/transport/libgnunettransporttesting.la 
851
852 test_quota_compliance_http_asymmetric_SOURCES = \
853  test_quota_compliance.c
854 test_quota_compliance_http_asymmetric_LDADD = \
855  $(top_builddir)/src/transport/libgnunettransport.la \
856  $(top_builddir)/src/hello/libgnunethello.la \
857  $(top_builddir)/src/util/libgnunetutil.la \
858  $(top_builddir)/src/transport/libgnunettransporttesting.la
859
860 test_quota_compliance_https_SOURCES = \
861  test_quota_compliance.c
862 test_quota_compliance_https_LDADD = \
863  $(top_builddir)/src/transport/libgnunettransport.la \
864  $(top_builddir)/src/hello/libgnunethello.la \
865  $(top_builddir)/src/util/libgnunetutil.la \
866  $(top_builddir)/src/transport/libgnunettransporttesting.la
867
868 test_quota_compliance_https_asymmetric_SOURCES = \
869  test_quota_compliance.c
870 test_quota_compliance_https_asymmetric_LDADD = \
871  $(top_builddir)/src/transport/libgnunettransport.la \
872  $(top_builddir)/src/hello/libgnunethello.la \
873  $(top_builddir)/src/util/libgnunetutil.la \
874  $(top_builddir)/src/transport/libgnunettransporttesting.la
875
876 # HTTPS tests
877 test_transport_api_https_SOURCES = \
878  test_transport_api.c
879 test_transport_api_https_LDADD = \
880  $(top_builddir)/src/transport/libgnunettransport.la \
881  $(top_builddir)/src/hello/libgnunethello.la \
882  $(top_builddir)/src/util/libgnunetutil.la  \
883  $(top_builddir)/src/transport/libgnunettransporttesting.la 
884
885 test_transport_api_timeout_https_SOURCES = \
886  test_transport_api_timeout.c
887 test_transport_api_timeout_https_LDADD = \
888  $(top_builddir)/src/transport/libgnunettransport.la \
889  $(top_builddir)/src/hello/libgnunethello.la \
890  $(top_builddir)/src/util/libgnunetutil.la \
891  $(top_builddir)/src/transport/libgnunettransporttesting.la  
892
893
894 test_transport_api_reliability_https_SOURCES = \
895  test_transport_api_reliability.c
896 test_transport_api_reliability_https_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_transport_api_unreliability_unix_SOURCES = \
903  test_transport_api_unreliability.c
904 test_transport_api_unreliability_unix_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_transport_api_unreliability_udp_SOURCES = \
911  test_transport_api_unreliability.c
912 test_transport_api_unreliability_udp_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_transport_api_unreliability_constant_udp_SOURCES = \
919  test_transport_api_unreliability_constant.c
920 test_transport_api_unreliability_constant_udp_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 if LINUX
927 test_transport_api_wlan_SOURCES = \
928  test_transport_api.c
929 test_transport_api_wlan_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 endif
935
936 test_quota_compliance_tcp_SOURCES = \
937  test_quota_compliance.c
938 test_quota_compliance_tcp_LDADD = \
939  $(top_builddir)/src/transport/libgnunettransport.la \
940  $(top_builddir)/src/hello/libgnunethello.la \
941  $(top_builddir)/src/util/libgnunetutil.la \
942  $(top_builddir)/src/transport/libgnunettransporttesting.la 
943
944 test_quota_compliance_tcp_asymmetric_SOURCES = \
945  test_quota_compliance.c
946 test_quota_compliance_tcp_asymmetric_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_quota_compliance_udp_SOURCES = \
953  test_quota_compliance.c
954 test_quota_compliance_udp_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_quota_compliance_unix_SOURCES = \
961  test_quota_compliance.c
962 test_quota_compliance_unix_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_quota_compliance_unix_asymmetric_SOURCES = \
969  test_quota_compliance.c
970 test_quota_compliance_unix_asymmetric_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 test_quota_compliance_wlan_SOURCES = \
977  test_quota_compliance.c
978 test_quota_compliance_wlan_LDADD = \
979  $(top_builddir)/src/transport/libgnunettransport.la \
980  $(top_builddir)/src/hello/libgnunethello.la \
981  $(top_builddir)/src/util/libgnunetutil.la \
982  $(top_builddir)/src/transport/libgnunettransporttesting.la
983
984 test_quota_compliance_wlan_asymmetric_SOURCES = \
985  test_quota_compliance.c
986 test_quota_compliance_wlan_asymmetric_LDADD = \
987  $(top_builddir)/src/transport/libgnunettransport.la \
988  $(top_builddir)/src/hello/libgnunethello.la \
989  $(top_builddir)/src/util/libgnunetutil.la \
990  $(top_builddir)/src/transport/libgnunettransporttesting.la
991
992 test_transport_api_multi_SOURCES = \
993  test_transport_api.c
994 test_transport_api_multi_LDADD = \
995  $(top_builddir)/src/transport/libgnunettransport.la \
996  $(top_builddir)/src/hello/libgnunethello.la \
997  $(top_builddir)/src/util/libgnunetutil.la \
998  $(top_builddir)/src/transport/libgnunettransporttesting.la 
999
1000
1001 EXTRA_DIST = \
1002 test_plugin_hostkey \
1003 test_plugin_hostkey.ecc \
1004 template_cfg_peer1.conf\
1005 template_cfg_peer2.conf\
1006 test_plugin_transport_data.conf\
1007 test_plugin_transport_data_udp.conf\
1008 test_quota_compliance_data.conf\
1009 test_quota_compliance_http_peer1.conf\
1010 test_quota_compliance_http_peer2.conf\
1011 test_quota_compliance_https_peer1.conf\
1012 test_quota_compliance_https_peer2.conf\
1013 test_quota_compliance_tcp_peer1.conf\
1014 test_quota_compliance_tcp_peer2.conf\
1015 test_quota_compliance_udp_peer1.conf\
1016 test_quota_compliance_udp_peer2.conf\
1017 test_quota_compliance_unix_peer1.conf\
1018 test_quota_compliance_unix_peer2.conf\
1019 test_quota_compliance_wlan_peer1.conf\
1020 test_quota_compliance_wlan_peer2.conf\
1021 test_quota_compliance_http_asymmetric_peer1.conf\
1022 test_quota_compliance_http_asymmetric_peer2.conf\
1023 test_quota_compliance_https_asymmetric_peer1.conf\
1024 test_quota_compliance_https_asymmetric_peer2.conf\
1025 test_quota_compliance_tcp_asymmetric_peer1.conf\
1026 test_quota_compliance_tcp_asymmetric_peer2.conf\
1027 test_quota_compliance_unix_asymmetric_peer1.conf\
1028 test_quota_compliance_unix_asymmetric_peer2.conf\
1029 test_quota_compliance_wlan_asymmetric_peer1.conf\
1030 test_quota_compliance_wlan_asymmetric_peer2.conf\
1031 test_transport_api_data.conf\
1032 test_transport_api_http_peer1.conf\
1033 test_transport_api_http_peer2.conf\
1034 test_transport_api_https_peer1.conf\
1035 test_transport_api_https_peer2.conf\
1036 test_transport_api_limited_sockets_tcp_peer1.conf\
1037 test_transport_api_limited_sockets_tcp_peer2.conf\
1038 test_transport_api_timeout_tcp_peer1.conf\
1039 test_transport_api_timeout_tcp_peer2.conf\
1040 test_transport_api_multi_peer1.conf\
1041 test_transport_api_multi_peer2.conf\
1042 test_transport_api_reliability_http_peer1.conf\
1043 test_transport_api_reliability_http_peer2.conf\
1044 test_transport_api_reliability_https_peer1.conf\
1045 test_transport_api_reliability_https_peer2.conf\
1046 test_transport_api_reliability_tcp_nat_peer1.conf\
1047 test_transport_api_reliability_tcp_nat_peer2.conf\
1048 test_transport_api_reliability_tcp_peer1.conf\
1049 test_transport_api_reliability_tcp_peer2.conf\
1050 test_transport_api_reliability_wlan_peer1.conf\
1051 test_transport_api_reliability_wlan_peer2.conf\
1052 test_transport_api_bidirectional_connect_peer1.conf\
1053 test_transport_api_bidirectional_connect_peer2.conf\
1054 test_transport_api_manipulation_send_tcp_peer1.conf\
1055 test_transport_api_manipulation_send_tcp_peer2.conf\
1056 test_transport_api_manipulation_recv_tcp_peer1.conf\
1057 test_transport_api_manipulation_recv_tcp_peer2.conf\
1058 test_transport_api_manipulation_cfg_peer1.conf\
1059 test_transport_api_manipulation_cfg_peer2.conf\
1060 test_transport_api_tcp_nat_peer1.conf\
1061 test_transport_api_tcp_nat_peer2.conf\
1062 test_transport_api_tcp_peer1.conf\
1063 test_transport_api_tcp_peer2.conf\
1064 test_transport_api_udp_nat_peer1.conf\
1065 test_transport_api_udp_nat_peer2.conf\
1066 test_transport_api_udp_peer1.conf\
1067 test_transport_api_udp_peer2.conf\
1068 test_transport_api_timeout_udp_peer1.conf\
1069 test_transport_api_timeout_udp_peer2.conf\
1070 test_transport_api_unix_peer1.conf\
1071 test_transport_api_unix_peer2.conf\
1072 test_transport_api_timeout_unix_peer1.conf\
1073 test_transport_api_timeout_unix_peer2.conf\
1074 test_transport_api_unreliability_udp_peer1.conf\
1075 test_transport_api_unreliability_udp_peer2.conf\
1076 test_transport_api_unreliability_unix_peer1.conf\
1077 test_transport_api_unreliability_unix_peer2.conf\
1078 test_transport_api_unreliability_wlan_peer1.conf\
1079 test_transport_api_unreliability_wlan_peer2.conf\
1080 test_transport_api_wlan_peer1.conf\
1081 test_transport_api_wlan_peer2.conf\
1082 test_transport_defaults.conf\
1083 test_transport_startonly.conf\
1084 test_transport_api_disconnect_tcp_peer1.conf\
1085 test_transport_api_disconnect_tcp_peer2.conf\
1086 test_transport_api_timeout_http_peer1.conf\
1087 test_transport_api_timeout_http_peer2.conf\
1088 test_transport_api_timeout_https_peer1.conf\
1089 test_transport_api_timeout_https_peer2.conf\
1090 test_transport_api_unreliability_constant_udp_peer1.conf\
1091 test_transport_api_unreliability_constant_udp_peer2.conf\
1092 test_transport_blacklisting_cfg_peer1.conf \
1093 test_transport_blacklisting_cfg_peer2.conf \
1094 test_transport_blacklisting_cfg_blp_peer1_full.conf\
1095 test_transport_blacklisting_cfg_blp_peer1_plugin.conf \
1096 test_transport_blacklisting_cfg_blp_peer2_full.conf\
1097 test_transport_blacklisting_cfg_blp_peer2_plugin.conf \
1098 test_transport_blacklisting_cfg_blp_peer1_multiple_plugins.conf \
1099 test_transport_blacklisting_cfg_blp_peer2_multiple_plugins.conf \
1100 test_transport_api_http_reverse_peer1.conf \
1101 test_transport_api_http_reverse_peer2.conf