all tests use generated configs and pass on my system
[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
6 if HAVE_MHD
7  GN_LIBMHD = -lmicrohttpd
8  HTTP_PLUGIN_LA = libgnunet_plugin_transport_http.la
9  HTTP_API_TEST = test_transport_api_http
10  HTTP_NAT_API_TEST = test_transport_api_http_nat
11  HTTP_API_TIMEOUT_TEST = test_transport_api_timeout_http
12  HTTP_REL_TEST = test_transport_api_reliability_http
13  HTTP_NAT_REL_TEST = test_transport_api_reliability_http_nat
14  HTTP_QUOTA_TEST = test_quota_compliance_http \
15                    test_quota_compliance_http_asymmetric
16  HTTPS_PLUGIN_LA = libgnunet_plugin_transport_https.la
17  HTTPS_API_TEST = test_transport_api_https
18  HTTPS_NAT_API_TEST = test_transport_api_https_nat
19  HTTPS_API_TIMEOUT_TEST = test_transport_api_timeout_https
20  HTTPS_REL_TEST = test_transport_api_reliability_https
21  HTTPS_NAT_REL_TEST = test_transport_api_reliability_https_nat
22  HTTPS_QUOTA_TEST = test_quota_compliance_https \
23                 test_quota_compliance_https_asymmetric
24 endif
25
26 if USE_COVERAGE
27   AM_CFLAGS = --coverage -O0
28 endif
29
30 if LINUX
31 if HAVE_EXPERIMENTAL
32  WLAN_BIN = gnunet-transport-wlan-helper
33  WLAN_BIN_DUMMY = gnunet-transport-wlan-helper-dummy
34  WLAN_PLUGIN_LA = libgnunet_plugin_transport_wlan.la
35  WLAN_API_TEST = test_transport_api_wlan
36  WLAN_REL_TEST = test_transport_api_reliability_wlan
37  WLAN_UREL_TEST = test_transport_api_unreliability_wlan
38 endif
39 endif
40
41
42 if LINUX
43 install-exec-hook:
44         chown root:root $(bindir)/gnunet-transport-wlan-helper || true
45         chmod u+s $(bindir)/gnunet-transport-wlan-helper || true
46 else
47 install-exec-hook:
48 endif
49
50 if !MINGW
51 UNIX_PLUGIN_LA = libgnunet_plugin_transport_unix.la
52 UNIX_PLUGIN_TEST = test_transport_api_unix 
53 UNIX_REL_TEST = test_transport_api_unreliability_unix
54 UNIX_QUOTA_TEST = test_quota_compliance_unix \
55      test_quota_compliance_unix_asymmetric
56 endif
57
58 noinst_PROGRAMS = \
59  $(WLAN_BIN_DUMMY)
60 # gnunet-transport-connect-running-peers
61
62 lib_LTLIBRARIES = \
63   libgnunettransport.la \
64   libgnunettransporttesting.la
65
66 libgnunettransporttesting_la_SOURCES = \
67   transport-testing.c transport-testing.h
68 libgnunettransporttesting_la_LIBADD = \
69   $(top_builddir)/src/transport/libgnunettransport.la \
70   $(top_builddir)/src/hello/libgnunethello.la \
71   $(top_builddir)/src/util/libgnunetutil.la \
72   $(GN_LIBINTL) 
73 libgnunettransporttesting_la_DEPENDENCIES = \
74   libgnunettransport.la
75
76 libgnunettransport_la_SOURCES = \
77   transport_api.c transport.h \
78   transport_api_blacklist.c \
79   transport_api_address_lookup.c \
80   transport_api_peer_address_lookup.c \
81   transport_api_address_iterate.c
82 libgnunettransport_la_LIBADD = \
83   $(top_builddir)/src/hello/libgnunethello.la \
84   $(top_builddir)/src/util/libgnunetutil.la \
85   $(GN_LIBINTL) 
86 libgnunettransport_la_LDFLAGS = \
87   $(GN_LIB_LDFLAGS) $(WINFLAGS) \
88   -version-info 0:0:0
89
90 bin_PROGRAMS = \
91  gnunet-transport \
92  $(WLAN_BIN) \
93  gnunet-service-transport \
94  gnunet-transport-list-connections \
95  gnunet-transport-certificate-creation
96
97 #bin_SCRIPTS = \
98 # gnunet-transport-certificate-creation
99
100 gnunet_transport_certificate_creation_SOURCES = \
101  gnunet-transport-certificate-creation.c
102 gnunet_transport_certificate_creation_LDADD = \
103   $(top_builddir)/src/util/libgnunetutil.la
104
105 gnunet_transport_wlan_helper_SOURCES = \
106  wlan/byteorder.h \
107  wlan/crctable_osdep.h \
108  wlan/helper_common.c wlan/helper_common.h \
109  wlan/ieee80211.h \
110  wlan/ieee80211_radiotap.h \
111  wlan/loopback_helper.h \
112  wlan/radiotap-parser.c wlan/radiotap-parser.h \
113  gnunet-transport-wlan-helper.c gnunet-transport-wlan-helper.h
114 gnunet_transport_wlan_helper_LDADD = \
115   $(top_builddir)/src/util/libgnunetutil.la 
116
117 gnunet_transport_wlan_helper_dummy_SOURCES = \
118  wlan/radiotap-parser.c \
119  wlan/helper_common.c \
120  test_plugin_transport_wlan_dummy.c
121 gnunet_transport_wlan_helper_dummy_LDADD = \
122   $(top_builddir)/src/util/libgnunetutil.la 
123
124 gnunet_transport_list_connections_SOURCES = \
125  gnunet-transport-list-connections.c         
126 gnunet_transport_list_connections_LDADD = \
127   $(top_builddir)/src/transport/libgnunettransport.la \
128   $(top_builddir)/src/util/libgnunetutil.la \
129   $(GN_LIBINTL)
130 gnunet_transport_list_connections_DEPENDENCIES = \
131   libgnunettransport.la
132
133 gnunet_transport_SOURCES = \
134  gnunet-transport.c         
135 gnunet_transport_LDADD = \
136   $(top_builddir)/src/transport/libgnunettransport.la \
137   $(top_builddir)/src/util/libgnunetutil.la \
138   $(GN_LIBINTL)
139 gnunet_transport_DEPENDENCIES = \
140   libgnunettransport.la                         
141
142 gnunet_service_transport_SOURCES = \
143  gnunet-service-transport.c gnunet-service-transport.h \
144  gnunet-service-transport_blacklist.h gnunet-service-transport_blacklist.c \
145  gnunet-service-transport_clients.h gnunet-service-transport_clients.c \
146  gnunet-service-transport_hello.h gnunet-service-transport_hello.c \
147  gnunet-service-transport_neighbours.h gnunet-service-transport_neighbours.c \
148  gnunet-service-transport_plugins.h gnunet-service-transport_plugins.c \
149  gnunet-service-transport_validation.h gnunet-service-transport_validation.c 
150 gnunet_service_transport_LDADD = \
151   $(top_builddir)/src/ats/libgnunetats.la \
152   $(top_builddir)/src/hello/libgnunethello.la \
153   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
154   $(top_builddir)/src/statistics/libgnunetstatistics.la \
155   $(top_builddir)/src/util/libgnunetutil.la \
156   $(GN_GLPK) \
157   $(GN_LIBINTL)
158
159 plugin_LTLIBRARIES = \
160   libgnunet_plugin_transport_tcp.la \
161   libgnunet_plugin_transport_udp.la \
162   $(UNIX_PLUGIN_LA) \
163   $(HTTP_PLUGIN_LA) \
164   $(HTTPS_PLUGIN_LA) \
165   $(WLAN_PLUGIN_LA) \
166   libgnunet_plugin_transport_template.la
167
168 libgnunet_plugin_transport_tcp_la_SOURCES = \
169   plugin_transport_tcp.c
170 libgnunet_plugin_transport_tcp_la_LIBADD = \
171   $(top_builddir)/src/hello/libgnunethello.la \
172   $(top_builddir)/src/statistics/libgnunetstatistics.la \
173   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
174   $(top_builddir)/src/nat/libgnunetnat.la \
175   $(top_builddir)/src/util/libgnunetutil.la 
176 libgnunet_plugin_transport_tcp_la_LDFLAGS = \
177  $(GN_PLUGIN_LDFLAGS)
178
179 libgnunet_plugin_transport_template_la_SOURCES = \
180   plugin_transport_template.c
181 libgnunet_plugin_transport_template_la_LIBADD = \
182   $(top_builddir)/src/util/libgnunetutil.la 
183 libgnunet_plugin_transport_template_la_LDFLAGS = \
184  $(GN_PLUGIN_LDFLAGS)
185
186 libgnunet_plugin_transport_wlan_la_SOURCES = \
187   plugin_transport_wlan.c plugin_transport_wlan.h
188 libgnunet_plugin_transport_wlan_la_LIBADD = \
189   $(top_builddir)/src/hello/libgnunethello.la \
190   $(top_builddir)/src/statistics/libgnunetstatistics.la \
191   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
192   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
193   $(top_builddir)/src/util/libgnunetutil.la 
194 libgnunet_plugin_transport_wlan_la_LDFLAGS = \
195   $(GN_PLUGIN_LDFLAGS)
196
197 libgnunet_plugin_transport_udp_la_SOURCES = \
198   plugin_transport_udp.c
199 libgnunet_plugin_transport_udp_la_LIBADD = \
200   $(top_builddir)/src/hello/libgnunethello.la \
201   $(top_builddir)/src/fragmentation/libgnunetfragmentation.la \
202   $(top_builddir)/src/statistics/libgnunetstatistics.la \
203   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
204   $(top_builddir)/src/nat/libgnunetnat.la \
205   $(top_builddir)/src/util/libgnunetutil.la 
206 libgnunet_plugin_transport_udp_la_LDFLAGS = \
207  $(GN_PLUGIN_LDFLAGS)
208
209 libgnunet_plugin_transport_unix_la_SOURCES = \
210   plugin_transport_unix.c
211 libgnunet_plugin_transport_unix_la_LIBADD = \
212   $(top_builddir)/src/hello/libgnunethello.la \
213   $(top_builddir)/src/statistics/libgnunetstatistics.la \
214   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
215   $(top_builddir)/src/util/libgnunetutil.la 
216 libgnunet_plugin_transport_unix_la_LDFLAGS = \
217  $(GN_PLUGIN_LDFLAGS)
218
219 libgnunet_plugin_transport_http_la_SOURCES = \
220   plugin_transport_http.c plugin_transport_http_client.c plugin_transport_http_server.c
221 libgnunet_plugin_transport_http_la_LIBADD = \
222   $(top_builddir)/src/hello/libgnunethello.la \
223   $(top_builddir)/src/statistics/libgnunetstatistics.la \
224   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
225   @LIBCURL@ \
226   $(top_builddir)/src/nat/libgnunetnat.la \
227   $(top_builddir)/src/util/libgnunetutil.la 
228 libgnunet_plugin_transport_http_la_LDFLAGS = \
229  $(GN_LIBMHD) \
230  $(GN_PLUGIN_LDFLAGS)
231 libgnunet_plugin_transport_http_la_CFLAGS = \
232  $(CFLAGS) 
233 libgnunet_plugin_transport_http_la_CPPFLAGS = \
234  @LIBCURL_CPPFLAGS@
235
236 libgnunet_plugin_transport_https_la_SOURCES = \
237   plugin_transport_http.c plugin_transport_http_client.c plugin_transport_http_server.c
238 libgnunet_plugin_transport_https_la_LIBADD = \
239   $(top_builddir)/src/hello/libgnunethello.la \
240   $(top_builddir)/src/statistics/libgnunetstatistics.la \
241   $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
242   @LIBCURL@ \
243   $(top_builddir)/src/nat/libgnunetnat.la \
244   $(top_builddir)/src/util/libgnunetutil.la 
245 libgnunet_plugin_transport_https_la_LDFLAGS = \
246  $(GN_LIBMHD) \
247  $(GN_PLUGIN_LDFLAGS)
248 libgnunet_plugin_transport_https_la_CFLAGS = \
249  $(CFLAGS) -DBUILD_HTTPS 
250 libgnunet_plugin_transport_https_la_CPPFLAGS = \
251  @LIBCURL_CPPFLAGS@
252
253
254 check_PROGRAMS = \
255  test_transport_testing \
256  test_transport_startonly \
257  test_transport_api_disconnect \
258  test_transport_api_tcp \
259  test_transport_api_timeout_tcp \
260  test_transport_api_limited_sockets_tcp \
261  test_transport_api_tcp_nat \
262  test_transport_api_udp \
263  $(UNIX_PLUGIN_TEST) \
264  test_transport_api_udp_nat \
265  $(HTTP_API_TEST) \
266  $(HTTP_NAT_API_TEST) \
267  $(HTTP_API_TIMEOUT_TEST) \
268  $(HTTPS_API_TEST) \
269  $(HTTPS_NAT_API_TEST) \
270  $(HTTPS_API_TIMEOUT_TEST) \
271  test_transport_api_multi \
272  test_transport_api_reliability_tcp \
273  test_transport_api_reliability_tcp_nat \
274  test_transport_api_unreliability_udp \
275  test_transport_api_unreliability_constant_udp \
276  $(UNIX_REL_TEST) \
277  $(HTTP_REL_TEST) \
278  $(HTTP_NAT_REL_TEST) \
279  $(HTTPS_REL_TEST) \
280  $(HTTPS_NAT_REL_TEST) \
281  test_quota_compliance_tcp \
282  test_quota_compliance_tcp_asymmetric \
283  test_quota_compliance_udp \
284  $(UNIX_QUOTA_TEST) \
285  $(HTTP_QUOTA_TEST) \
286  $(HTTPS_QUOTA_TEST) \
287  $(WLAN_API_TEST) \
288  $(WLAN_REL_TEST) \
289  $(WLAN_UREL_TEST)
290
291 if ENABLE_TEST_RUN
292 TESTS = \
293  test_transport_testing \
294  test_transport_startonly \
295  test_transport_api_disconnect \
296  test_transport_api_tcp \
297  test_transport_api_timeout_tcp \
298  test_transport_api_limited_sockets_tcp \
299  test_transport_api_tcp_nat \
300  test_transport_api_udp \
301  $(UNIX_PLUGIN_TEST) \
302  test_transport_api_udp_nat \
303  $(HTTP_API_TEST) \
304  $(HTTP_NAT_API_TEST) \
305  $(HTTP_API_TIMEOUT_TEST) \
306  $(HTTPS_API_TEST) \
307  $(HTTPS_NAT_API_TEST) \
308  $(HTTPS_API_TIMEOUT_TEST) \
309  test_transport_api_multi \
310  test_transport_api_reliability_tcp \
311  test_transport_api_reliability_tcp_nat \
312  test_transport_api_unreliability_udp \
313  test_transport_api_unreliability_constant_udp \
314  $(UNIX_REL_TEST) \
315  $(HTTP_REL_TEST) \
316  $(HTTP_NAT_REL_TEST) \
317  $(HTTPS_REL_TEST) \
318  $(HTTPS_NAT_REL_TEST) \
319  test_quota_compliance_tcp \
320  test_quota_compliance_tcp_asymmetric \
321  test_quota_compliance_udp \
322  $(UNIX_QUOTA_TEST) \
323  $(HTTP_QUOTA_TEST) \
324  $(HTTPS_QUOTA_TEST) \
325  $(WLAN_API_TEST) \
326  $(WLAN_REL_TEST) \
327  $(WLAN_UREL_TEST)
328 endif
329
330 test_transport_testing_SOURCES = \
331  test_transport_testing.c
332 test_transport_testing_LDADD = \
333  $(top_builddir)/src/util/libgnunetutil.la \
334  $(top_builddir)/src/transport/libgnunettransport.la \
335  $(top_builddir)/src/hello/libgnunethello.la \
336  $(top_builddir)/src/transport/libgnunettransporttesting.la 
337
338 #gnunet_transport_connect_running_peers_SOURCES = \
339 # gnunet-transport-connect-running-peers.c
340 #gnunet_transport_connect_running_peers_LDADD = \
341 # $(top_builddir)/src/transport/libgnunettransport.la \
342 # $(top_builddir)/src/hello/libgnunethello.la \
343 # $(top_builddir)/src/util/libgnunetutil.la \
344 # $(top_builddir)/src/transport/libgnunettransporttesting.la 
345
346 test_transport_api_disconnect_SOURCES = \
347  test_transport_api_disconnect.c
348 test_transport_api_disconnect_LDADD = \
349  $(top_builddir)/src/transport/libgnunettransport.la \
350  $(top_builddir)/src/hello/libgnunethello.la \
351  $(top_builddir)/src/statistics/libgnunetstatistics.la \
352  $(top_builddir)/src/util/libgnunetutil.la 
353
354 test_transport_startonly_SOURCES = \
355  test_transport_startonly.c
356 test_transport_startonly_LDADD = \
357  $(top_builddir)/src/transport/libgnunettransport.la \
358  $(top_builddir)/src/hello/libgnunethello.la \
359  $(top_builddir)/src/statistics/libgnunetstatistics.la \
360  $(top_builddir)/src/util/libgnunetutil.la \
361  $(top_builddir)/src/transport/libgnunettransporttesting.la 
362
363 test_transport_api_tcp_SOURCES = \
364  test_transport_api.c
365 test_transport_api_tcp_LDADD = \
366  $(top_builddir)/src/transport/libgnunettransport.la \
367  $(top_builddir)/src/hello/libgnunethello.la \
368  $(top_builddir)/src/util/libgnunetutil.la  \
369  $(top_builddir)/src/transport/libgnunettransporttesting.la
370   
371 test_transport_api_limited_sockets_tcp_SOURCES = \
372  test_transport_api_limited_sockets.c
373 test_transport_api_limited_sockets_tcp_LDADD = \
374  $(top_builddir)/src/transport/libgnunettransport.la \
375  $(top_builddir)/src/hello/libgnunethello.la \
376  $(top_builddir)/src/util/libgnunetutil.la  \
377  $(top_builddir)/src/transport/libgnunettransporttesting.la
378
379 test_transport_api_tcp_nat_SOURCES = \
380  test_transport_api.c
381 test_transport_api_tcp_nat_LDADD = \
382  $(top_builddir)/src/transport/libgnunettransport.la \
383  $(top_builddir)/src/hello/libgnunethello.la \
384  $(top_builddir)/src/util/libgnunetutil.la \
385  $(top_builddir)/src/transport/libgnunettransporttesting.la 
386
387 test_transport_api_reliability_tcp_SOURCES = \
388  test_transport_api_reliability.c
389 test_transport_api_reliability_tcp_LDADD = \
390  $(top_builddir)/src/transport/libgnunettransport.la \
391  $(top_builddir)/src/hello/libgnunethello.la \
392  $(top_builddir)/src/util/libgnunetutil.la \
393  $(top_builddir)/src/transport/libgnunettransporttesting.la 
394
395 test_transport_api_timeout_tcp_SOURCES = \
396  test_transport_api_timeout.c
397 test_transport_api_timeout_tcp_LDADD = \
398  $(top_builddir)/src/transport/libgnunettransport.la \
399  $(top_builddir)/src/hello/libgnunethello.la \
400  $(top_builddir)/src/util/libgnunetutil.la \
401  $(top_builddir)/src/transport/libgnunettransporttesting.la 
402
403 test_transport_api_timeout_http_SOURCES = \
404  test_transport_api_timeout.c
405 test_transport_api_timeout_http_LDADD = \
406  $(top_builddir)/src/transport/libgnunettransport.la \
407  $(top_builddir)/src/hello/libgnunethello.la \
408  $(top_builddir)/src/util/libgnunetutil.la \
409  $(top_builddir)/src/transport/libgnunettransporttesting.la 
410  
411 test_transport_api_timeout_https_SOURCES = \
412  test_transport_api_timeout.c
413 test_transport_api_timeout_https_LDADD = \
414  $(top_builddir)/src/transport/libgnunettransport.la \
415  $(top_builddir)/src/hello/libgnunethello.la \
416  $(top_builddir)/src/util/libgnunetutil.la \
417  $(top_builddir)/src/transport/libgnunettransporttesting.la 
418  
419 test_transport_api_reliability_tcp_nat_SOURCES = \
420  test_transport_api_reliability.c
421 test_transport_api_reliability_tcp_nat_LDADD = \
422  $(top_builddir)/src/transport/libgnunettransport.la \
423  $(top_builddir)/src/hello/libgnunethello.la \
424  $(top_builddir)/src/util/libgnunetutil.la \
425  $(top_builddir)/src/transport/libgnunettransporttesting.la 
426
427 test_transport_api_reliability_wlan_SOURCES = \
428  test_transport_api_reliability.c
429 test_transport_api_reliability_wlan_LDADD = \
430  $(top_builddir)/src/transport/libgnunettransport.la \
431  $(top_builddir)/src/hello/libgnunethello.la \
432  $(top_builddir)/src/util/libgnunetutil.la \
433  $(top_builddir)/src/transport/libgnunettransporttesting.la 
434
435 test_transport_api_unreliability_wlan_SOURCES = \
436  test_transport_api_unreliability.c
437 test_transport_api_unreliability_wlan_LDADD = \
438  $(top_builddir)/src/transport/libgnunettransport.la \
439  $(top_builddir)/src/hello/libgnunethello.la \
440  $(top_builddir)/src/util/libgnunetutil.la \
441  $(top_builddir)/src/transport/libgnunettransporttesting.la 
442  
443 test_transport_api_udp_SOURCES = \
444  test_transport_api.c
445 test_transport_api_udp_LDADD = \
446  $(top_builddir)/src/transport/libgnunettransport.la \
447  $(top_builddir)/src/hello/libgnunethello.la \
448  $(top_builddir)/src/util/libgnunetutil.la  \
449  $(top_builddir)/src/transport/libgnunettransporttesting.la 
450
451 test_transport_api_udp_nat_SOURCES = \
452  test_transport_api.c
453 test_transport_api_udp_nat_LDADD = \
454  $(top_builddir)/src/transport/libgnunettransport.la \
455  $(top_builddir)/src/hello/libgnunethello.la \
456  $(top_builddir)/src/util/libgnunetutil.la  \
457  $(top_builddir)/src/transport/libgnunettransporttesting.la  
458
459 test_transport_api_unix_SOURCES = \
460  test_transport_api.c
461 test_transport_api_unix_LDADD = \
462  $(top_builddir)/src/transport/libgnunettransport.la \
463  $(top_builddir)/src/hello/libgnunethello.la \
464  $(top_builddir)/src/util/libgnunetutil.la \
465  $(top_builddir)/src/transport/libgnunettransporttesting.la 
466
467 #test_plugin_transport_http_SOURCES = \
468 # test_plugin_transport_http.c
469 #test_plugin_transport_http_LDADD = \
470 # $(top_builddir)/src/statistics/libgnunetstatistics.la \
471 # @LIBCURL@ \
472 # $(top_builddir)/src/hello/libgnunethello.la \
473 # $(top_builddir)/src/util/libgnunetutil.la  
474
475 test_transport_api_http_SOURCES = \
476  test_transport_api.c
477 test_transport_api_http_LDADD = \
478  $(top_builddir)/src/transport/libgnunettransport.la \
479  $(top_builddir)/src/hello/libgnunethello.la \
480  $(top_builddir)/src/util/libgnunetutil.la \
481  $(top_builddir)/src/transport/libgnunettransporttesting.la 
482  
483  test_transport_api_http_nat_SOURCES = \
484  test_transport_api.c
485 test_transport_api_http_nat_LDADD = \
486  $(top_builddir)/src/transport/libgnunettransport.la \
487  $(top_builddir)/src/hello/libgnunethello.la \
488  $(top_builddir)/src/util/libgnunetutil.la \
489  $(top_builddir)/src/transport/libgnunettransporttesting.la 
490
491 test_transport_api_reliability_http_SOURCES = \
492  test_transport_api_reliability.c
493 test_transport_api_reliability_http_LDADD = \
494  $(top_builddir)/src/transport/libgnunettransport.la \
495  $(top_builddir)/src/hello/libgnunethello.la \
496  $(top_builddir)/src/util/libgnunetutil.la \
497  $(top_builddir)/src/transport/libgnunettransporttesting.la 
498
499 test_transport_api_reliability_http_nat_SOURCES = \
500  test_transport_api_reliability.c
501 test_transport_api_reliability_http_nat_LDADD = \
502  $(top_builddir)/src/transport/libgnunettransport.la \
503  $(top_builddir)/src/hello/libgnunethello.la \
504  $(top_builddir)/src/util/libgnunetutil.la \
505  $(top_builddir)/src/transport/libgnunettransporttesting.la 
506
507 test_transport_api_https_SOURCES = \
508  test_transport_api.c
509 test_transport_api_https_LDADD = \
510  $(top_builddir)/src/transport/libgnunettransport.la \
511  $(top_builddir)/src/hello/libgnunethello.la \
512  $(top_builddir)/src/util/libgnunetutil.la  \
513  $(top_builddir)/src/transport/libgnunettransporttesting.la 
514
515 test_transport_api_https_nat_SOURCES = \
516  test_transport_api.c
517 test_transport_api_https_nat_LDADD = \
518  $(top_builddir)/src/transport/libgnunettransport.la \
519  $(top_builddir)/src/hello/libgnunethello.la \
520  $(top_builddir)/src/util/libgnunetutil.la \
521  $(top_builddir)/src/transport/libgnunettransporttesting.la 
522
523 test_transport_api_reliability_https_SOURCES = \
524  test_transport_api_reliability.c
525 test_transport_api_reliability_https_LDADD = \
526  $(top_builddir)/src/transport/libgnunettransport.la \
527  $(top_builddir)/src/hello/libgnunethello.la \
528  $(top_builddir)/src/util/libgnunetutil.la \
529  $(top_builddir)/src/transport/libgnunettransporttesting.la 
530
531 test_transport_api_reliability_https_nat_SOURCES = \
532  test_transport_api_reliability.c
533 test_transport_api_reliability_https_nat_LDADD = \
534  $(top_builddir)/src/transport/libgnunettransport.la \
535  $(top_builddir)/src/hello/libgnunethello.la \
536  $(top_builddir)/src/util/libgnunetutil.la \
537  $(top_builddir)/src/transport/libgnunettransporttesting.la 
538
539 test_transport_api_unreliability_unix_SOURCES = \
540  test_transport_api_unreliability.c
541 test_transport_api_unreliability_unix_LDADD = \
542  $(top_builddir)/src/transport/libgnunettransport.la \
543  $(top_builddir)/src/hello/libgnunethello.la \
544  $(top_builddir)/src/util/libgnunetutil.la \
545  $(top_builddir)/src/transport/libgnunettransporttesting.la 
546
547 test_transport_api_unreliability_udp_SOURCES = \
548  test_transport_api_unreliability.c
549 test_transport_api_unreliability_udp_LDADD = \
550  $(top_builddir)/src/transport/libgnunettransport.la \
551  $(top_builddir)/src/hello/libgnunethello.la \
552  $(top_builddir)/src/util/libgnunetutil.la \
553  $(top_builddir)/src/transport/libgnunettransporttesting.la 
554
555 test_transport_api_unreliability_constant_udp_SOURCES = \
556  test_transport_api_unreliability_constant.c
557 test_transport_api_unreliability_constant_udp_LDADD = \
558  $(top_builddir)/src/transport/libgnunettransport.la \
559  $(top_builddir)/src/hello/libgnunethello.la \
560  $(top_builddir)/src/util/libgnunetutil.la \
561  $(top_builddir)/src/transport/libgnunettransporttesting.la 
562
563 if LINUX
564 test_transport_api_wlan_SOURCES = \
565  test_transport_api.c
566 test_transport_api_wlan_LDADD = \
567  $(top_builddir)/src/transport/libgnunettransport.la \
568  $(top_builddir)/src/hello/libgnunethello.la \
569  $(top_builddir)/src/util/libgnunetutil.la \
570  $(top_builddir)/src/transport/libgnunettransporttesting.la  
571 endif
572
573 test_quota_compliance_tcp_SOURCES = \
574  test_quota_compliance.c
575 test_quota_compliance_tcp_LDADD = \
576  $(top_builddir)/src/transport/libgnunettransport.la \
577  $(top_builddir)/src/hello/libgnunethello.la \
578  $(top_builddir)/src/util/libgnunetutil.la \
579  $(top_builddir)/src/transport/libgnunettransporttesting.la 
580
581 test_quota_compliance_tcp_asymmetric_SOURCES = \
582  test_quota_compliance.c
583 test_quota_compliance_tcp_asymmetric_LDADD = \
584  $(top_builddir)/src/transport/libgnunettransport.la \
585  $(top_builddir)/src/hello/libgnunethello.la \
586  $(top_builddir)/src/util/libgnunetutil.la \
587  $(top_builddir)/src/transport/libgnunettransporttesting.la 
588
589 #test_quota_compliance_tcp_asymmetric_send_constant_SOURCES = \
590 # test_quota_compliance.c
591 #test_quota_compliance_tcp_asymmetric_send_constant_LDADD = \
592 # $(top_builddir)/src/transport/libgnunettransport.la \
593 # $(top_builddir)/src/util/libgnunetutil.la
594
595 test_quota_compliance_http_SOURCES = \
596  test_quota_compliance.c
597 test_quota_compliance_http_LDADD = \
598  $(top_builddir)/src/transport/libgnunettransport.la \
599  $(top_builddir)/src/hello/libgnunethello.la \
600  $(top_builddir)/src/util/libgnunetutil.la \
601  $(top_builddir)/src/transport/libgnunettransporttesting.la 
602
603  test_quota_compliance_http_asymmetric_SOURCES = \
604  test_quota_compliance.c
605 test_quota_compliance_http_asymmetric_LDADD = \
606  $(top_builddir)/src/transport/libgnunettransport.la \
607  $(top_builddir)/src/hello/libgnunethello.la \
608  $(top_builddir)/src/util/libgnunetutil.la \
609  $(top_builddir)/src/transport/libgnunettransporttesting.la
610
611 #test_quota_compliance_http_asymmetric_send_constant_SOURCES = \
612 # test_quota_compliance.c
613 #test_quota_compliance_http_asymmetric_send_constant_LDADD = \
614 # $(top_builddir)/src/transport/libgnunettransport.la \
615 # $(top_builddir)/src/util/libgnunetutil.la
616
617 test_quota_compliance_https_SOURCES = \
618  test_quota_compliance.c
619 test_quota_compliance_https_LDADD = \
620  $(top_builddir)/src/transport/libgnunettransport.la \
621  $(top_builddir)/src/hello/libgnunethello.la \
622  $(top_builddir)/src/util/libgnunetutil.la \
623  $(top_builddir)/src/transport/libgnunettransporttesting.la
624
625  test_quota_compliance_https_asymmetric_SOURCES = \
626  test_quota_compliance.c
627 test_quota_compliance_https_asymmetric_LDADD = \
628  $(top_builddir)/src/transport/libgnunettransport.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_quota_compliance_https_asymmetric_send_constant_SOURCES = \
634 # test_quota_compliance.c
635 #test_quota_compliance_https_asymmetric_send_constant_LDADD = \
636 # $(top_builddir)/src/transport/libgnunettransport.la \
637 # $(top_builddir)/src/util/libgnunetutil.la
638
639 test_quota_compliance_udp_SOURCES = \
640  test_quota_compliance.c
641 test_quota_compliance_udp_LDADD = \
642  $(top_builddir)/src/transport/libgnunettransport.la \
643  $(top_builddir)/src/hello/libgnunethello.la \
644  $(top_builddir)/src/util/libgnunetutil.la \
645  $(top_builddir)/src/transport/libgnunettransporttesting.la
646
647 test_quota_compliance_unix_SOURCES = \
648  test_quota_compliance.c
649 test_quota_compliance_unix_LDADD = \
650  $(top_builddir)/src/transport/libgnunettransport.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_quota_compliance_unix_asymmetric_SOURCES = \
656  test_quota_compliance.c
657 test_quota_compliance_unix_asymmetric_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_multi_SOURCES = \
664  test_transport_api.c
665 test_transport_api_multi_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
672 EXTRA_DIST = \
673 gnunet-transport-certificate-creation \
674 template_cfg_peer1.conf\
675 template_cfg_peer2.conf\
676 test_plugin_transport_data.conf\
677 test_plugin_transport_data_http.conf\
678 test_plugin_transport_data_udp.conf\
679 test_quota_compliance_data.conf\
680 test_quota_compliance_http_peer1.conf\
681 test_quota_compliance_http_peer2.conf\
682 test_quota_compliance_https_peer1.conf\
683 test_quota_compliance_https_peer2.conf\
684 test_quota_compliance_tcp_peer1.conf\
685 test_quota_compliance_tcp_peer2.conf\
686 test_quota_compliance_udp_peer1.conf\
687 test_quota_compliance_udp_peer2.conf\
688 test_quota_compliance_unix_peer1.conf\
689 test_quota_compliance_unix_peer2.conf\
690 test_transport_api_data.conf\
691 test_transport_api_http_peer1.conf\
692 test_transport_api_http_peer2.conf\
693 test_transport_api_https_peer1.conf\
694 test_transport_api_https_peer2.conf\
695 test_transport_api_limited_sockets_tcp_peer1.conf\
696 test_transport_api_limited_sockets_tcp_peer2.conf\
697 test_transport_api_timeout_tcp_peer1.conf\
698 test_transport_api_timeout_tcp_peer2.conf\
699 test_transport_api_multi_peer1.conf\
700 test_transport_api_multi_peer2.conf\
701 test_transport_api_reliability_http_peer1.conf\
702 test_transport_api_reliability_http_peer2.conf\
703 test_transport_api_reliability_https_peer1.conf\
704 test_transport_api_reliability_https_peer2.conf\
705 test_transport_api_reliability_tcp_nat_peer1.conf\
706 test_transport_api_reliability_tcp_nat_peer2.conf\
707 test_transport_api_reliability_tcp_peer1.conf\
708 test_transport_api_reliability_tcp_peer2.conf\
709 test_transport_api_reliability_wlan_peer1.conf\
710 test_transport_api_reliability_wlan_peer2.conf\
711 test_transport_api_tcp_nat_peer1.conf\
712 test_transport_api_tcp_nat_peer2.conf\
713 test_transport_api_tcp_peer1.conf\
714 test_transport_api_tcp_peer2.conf\
715 test_transport_api_udp_nat_peer1.conf\
716 test_transport_api_udp_nat_peer2.conf\
717 test_transport_api_udp_peer1.conf\
718 test_transport_api_udp_peer2.conf\
719 test_transport_api_unix_peer1.conf\
720 test_transport_api_unix_peer2.conf\
721 test_transport_api_unreliability_udp_peer1.conf\
722 test_transport_api_unreliability_udp_peer2.conf\
723 test_transport_api_unreliability_unix_peer1.conf\
724 test_transport_api_unreliability_unix_peer2.conf\
725 test_transport_api_unreliability_wlan_peer1.conf\
726 test_transport_api_unreliability_wlan_peer2.conf\
727 test_transport_api_wlan_peer1.conf\
728 test_transport_api_wlan_peer2.conf\
729 test_transport_defaults.conf\
730 test_transport_startonly.conf