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