-fix block download calculation
[oweals/gnunet.git] / src / fs / Makefile.am
1 INCLUDES = -I$(top_srcdir)/src/include
2
3 if MINGW
4  WINFLAGS = -Wl,--no-undefined -Wl,--export-all-symbols 
5 endif
6
7 if USE_COVERAGE
8   AM_CFLAGS = --coverage -O0
9   XLIB = -lgcov
10 endif
11
12 pkgcfgdir= $(pkgdatadir)/config.d/
13
14 libexecdir= $(pkglibdir)/libexec/
15
16 pkgcfg_DATA = \
17   fs.conf
18
19 plugindir = $(libdir)/gnunet
20
21
22 lib_LTLIBRARIES = libgnunetfs.la
23
24 plugin_LTLIBRARIES = \
25   libgnunet_plugin_block_fs.la 
26
27 noinst_LIBRARIES = libgnunetfstest.a
28
29 libgnunetfs_la_SOURCES = \
30   fs_api.c fs_api.h fs.h \
31   fs_directory.c \
32   fs_dirmetascan.c \
33   fs_download.c \
34   fs_file_information.c \
35   fs_getopt.c \
36   fs_list_indexed.c \
37   fs_publish.c \
38   fs_publish_ksk.c \
39   fs_misc.c \
40   fs_namespace.c \
41   fs_namespace_advertise.c \
42   fs_search.c \
43   fs_sharetree.c \
44   fs_tree.c fs_tree.h \
45   fs_unindex.c \
46   fs_uri.c 
47
48 libgnunetfs_la_LIBADD = \
49   $(top_builddir)/src/datastore/libgnunetdatastore.la \
50   $(top_builddir)/src/util/libgnunetutil.la \
51   $(GN_LIBINTL) $(XLIB) -lunistring -lextractor
52
53 libgnunetfs_la_LDFLAGS = \
54   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
55   -version-info 2:2:0
56
57
58 libgnunetfstest_a_SOURCES = \
59   fs_test_lib.c fs_test_lib.h
60
61 libgnunetfstest_a_LIBADD = \
62   $(top_builddir)/src/testing/libgnunettesting.la \
63   $(top_builddir)/src/testbed/libgnunettestbed.la 
64
65 libexec_PROGRAMS = \
66   gnunet-helper-fs-publish \
67   gnunet-service-fs 
68
69 bin_PROGRAMS = \
70   gnunet-auto-share \
71   gnunet-directory \
72   gnunet-download \
73   gnunet-publish \
74   gnunet-pseudonym \
75   gnunet-search \
76   gnunet-fs \
77   gnunet-unindex 
78
79 bin_SCRIPTS = \
80   gnunet-download-manager.scm
81
82 gnunet_directory_SOURCES = \
83  gnunet-directory.c
84 gnunet_directory_LDADD = \
85   $(top_builddir)/src/fs/libgnunetfs.la \
86   $(top_builddir)/src/util/libgnunetutil.la \
87   -lextractor \
88   $(GN_LIBINTL)
89 gnunet_directory_DEPENDENCIES = \
90   libgnunetfs.la
91
92 gnunet_fs_SOURCES = \
93  gnunet-fs.c
94 gnunet_fs_LDADD = \
95   $(top_builddir)/src/fs/libgnunetfs.la \
96   $(top_builddir)/src/util/libgnunetutil.la \
97   -lextractor \
98   $(GN_LIBINTL)
99 gnunet_fs_DEPENDENCIES = \
100   libgnunetfs.la
101
102 gnunet_download_SOURCES =  \
103  gnunet-download.c         
104 gnunet_download_LDADD =  \
105  $(top_builddir)/src/fs/libgnunetfs.la \
106  $(top_builddir)/src/util/libgnunetutil.la \
107  $(GN_LIBINTL)
108 gnunet_download_DEPENDENCIES = \
109   libgnunetfs.la
110
111 gnunet_publish_SOURCES =  \
112  gnunet-publish.c         
113 gnunet_publish_LDADD =  \
114  $(top_builddir)/src/fs/libgnunetfs.la \
115  $(top_builddir)/src/util/libgnunetutil.la \
116  -lextractor \
117  $(GN_LIBINTL)
118 gnunet_publish_DEPENDENCIES = \
119   libgnunetfs.la
120
121 gnunet_auto_share_SOURCES =  \
122  gnunet-auto-share.c         
123 gnunet_auto_share_LDADD =  \
124  $(top_builddir)/src/util/libgnunetutil.la \
125  -lextractor \
126  $(GN_LIBINTL)
127 gnunet_auto_share_DEPENDENCIES = \
128   libgnunetfs.la
129
130 gnunet_helper_fs_publish_SOURCES =  \
131  gnunet-helper-fs-publish.c 
132 gnunet_helper_fs_publish_LDADD =  \
133  $(top_builddir)/src/util/libgnunetutil.la \
134  -lextractor \
135  $(GN_LIBINTL)
136 gnunet_helper_fs_publish_DEPENDENCIES = \
137   libgnunetfs.la
138
139 gnunet_pseudonym_SOURCES = \
140  gnunet-pseudonym.c
141 gnunet_pseudonym_LDADD = \
142   $(top_builddir)/src/fs/libgnunetfs.la \
143   $(top_builddir)/src/util/libgnunetutil.la \
144   -lextractor \
145   $(GN_LIBINTL)
146 gnunet_pseudonym_DEPENDENCIES = \
147   libgnunetfs.la
148
149 gnunet_search_SOURCES = \
150  gnunet-search.c         
151 gnunet_search_LDADD = \
152   $(top_builddir)/src/fs/libgnunetfs.la \
153   $(top_builddir)/src/util/libgnunetutil.la \
154  -lextractor \
155   $(GN_LIBINTL)
156 gnunet_search_DEPENDENCIES = \
157   libgnunetfs.la
158
159 gnunet_service_fs_SOURCES =  \
160  gnunet-service-fs.c gnunet-service-fs.h \
161  gnunet-service-fs_cp.c gnunet-service-fs_cp.h \
162  gnunet-service-fs_indexing.c gnunet-service-fs_indexing.h \
163  gnunet-service-fs_lc.c gnunet-service-fs_lc.h \
164  gnunet-service-fs_pe.c gnunet-service-fs_pe.h \
165  gnunet-service-fs_pr.c gnunet-service-fs_pr.h \
166  gnunet-service-fs_push.c gnunet-service-fs_push.h \
167  gnunet-service-fs_put.c gnunet-service-fs_put.h 
168 gnunet_service_fs_LDADD =  \
169  $(top_builddir)/src/fs/libgnunetfs.la \
170  $(top_builddir)/src/dht/libgnunetdht.la \
171  $(top_builddir)/src/block/libgnunetblock.la \
172  $(top_builddir)/src/datastore/libgnunetdatastore.la \
173  $(top_builddir)/src/statistics/libgnunetstatistics.la \
174  $(top_builddir)/src/ats/libgnunetats.la \
175  $(top_builddir)/src/core/libgnunetcore.la \
176  $(top_builddir)/src/util/libgnunetutil.la \
177  $(GN_LIBINTL) -lm
178 gnunet_service_fs_DEPENDENCIES = \
179   libgnunetfs.la
180
181 gnunet_unindex_SOURCES = \
182  gnunet-unindex.c         
183 gnunet_unindex_LDADD = \
184   $(top_builddir)/src/fs/libgnunetfs.la \
185   $(top_builddir)/src/util/libgnunetutil.la \
186   $(GN_LIBINTL)
187 gnunet_unindex_DEPENDENCIES = \
188   libgnunetfs.la
189
190
191 libgnunet_plugin_block_fs_la_SOURCES = \
192   plugin_block_fs.c
193 libgnunet_plugin_block_fs_la_LIBADD = \
194   $(top_builddir)/src/block/libgnunetblock.la \
195   $(top_builddir)/src/util/libgnunetutil.la \
196   $(LTLIBINTL)
197 libgnunet_plugin_block_fs_la_LDFLAGS = \
198  $(GN_PLUGIN_LDFLAGS)
199 libgnunet_plugin_block_fs_la_DEPENDENCIES = \
200   $(top_builddir)/src/block/libgnunetblock.la
201
202
203
204 if HAVE_BENCHMARKS
205  FS_BENCHMARKS = \
206  perf_gnunet_service_fs_p2p \
207  perf_gnunet_service_fs_p2p_dht \
208  perf_gnunet_service_fs_p2p_index \
209  perf_gnunet_service_fs_p2p_respect 
210 endif
211
212 check_PROGRAMS = \
213  test_plugin_block_fs \
214  test_fs_directory \
215  test_fs_download \
216  test_fs_download_indexed \
217  test_fs_download_persistence \
218  test_fs_file_information \
219  test_fs_getopt \
220  test_fs_list_indexed \
221  test_fs_namespace \
222  test_fs_namespace_list_updateable \
223  test_fs_publish \
224  test_fs_publish_persistence \
225  test_fs_search \
226  test_fs_search_probes \
227  test_fs_search_persistence \
228  test_fs_start_stop \
229  test_fs_test_lib \
230  test_fs_unindex \
231  test_fs_unindex_persistence \
232  test_fs_uri \
233  test_gnunet_service_fs_migration \
234  test_gnunet_service_fs_p2p \
235  $(FS_BENCHMARKS)
236
237 test_plugin_block_fs_SOURCES = \
238  test_plugin_block_fs.c
239 test_plugin_block_fs_LDADD = \
240  $(top_builddir)/src/block/libgnunetblock.la \
241  $(top_builddir)/src/util/libgnunetutil.la  
242
243 if HAVE_PYTHON
244 check_SCRIPTS = \
245  test_gnunet_fs_psd.py \
246  test_gnunet_fs_rec.py \
247  test_gnunet_fs_idx.py \
248  test_gnunet_fs_ns.py 
249 endif
250
251 if ENABLE_MONKEY
252  TESTS_ENVIRONMENT = @MONKEYPREFIX@
253  AM_LDFLAGS = -no-install
254 endif
255
256
257 if ENABLE_TEST_RUN
258 TESTS = \
259  test_fs_directory \
260  test_fs_download \
261  test_fs_download_indexed \
262  test_fs_download_persistence \
263  test_fs_file_information \
264  test_fs_list_indexed \
265  test_fs_namespace \
266  test_fs_namespace_list_updateable \
267  test_fs_publish \
268  test_fs_publish_persistence \
269  test_fs_search \
270  test_fs_search_probes \
271  test_fs_search_persistence \
272  test_fs_start_stop \
273  test_fs_unindex \
274  test_fs_unindex_persistence \
275  test_fs_uri \
276  test_fs_test_lib \
277  test_gnunet_service_fs_migration \
278  test_gnunet_service_fs_p2p \
279  perf_gnunet_service_fs_p2p \
280  perf_gnunet_service_fs_p2p_index \
281  perf_gnunet_service_fs_p2p_respect \
282  $(check_SCRIPTS)  
283 endif
284
285
286 test_fs_directory_SOURCES = \
287  test_fs_directory.c
288 test_fs_directory_LDADD = \
289   -lextractor \
290   $(top_builddir)/src/fs/libgnunetfs.la  \
291   $(top_builddir)/src/util/libgnunetutil.la  
292
293 test_fs_download_SOURCES = \
294  test_fs_download.c
295 test_fs_download_LDADD = \
296   $(top_builddir)/src/testing/libgnunettesting.la  \
297   $(top_builddir)/src/fs/libgnunetfs.la  \
298   $(top_builddir)/src/util/libgnunetutil.la  
299
300 test_fs_download_indexed_SOURCES = \
301  test_fs_download_indexed.c
302 test_fs_download_indexed_LDADD = \
303   $(top_builddir)/src/testing/libgnunettesting.la  \
304   $(top_builddir)/src/fs/libgnunetfs.la  \
305   $(top_builddir)/src/util/libgnunetutil.la  
306
307 test_fs_download_persistence_SOURCES = \
308  test_fs_download_persistence.c
309 test_fs_download_persistence_LDADD = \
310   $(top_builddir)/src/testing/libgnunettesting.la  \
311   $(top_builddir)/src/fs/libgnunetfs.la  \
312   $(top_builddir)/src/util/libgnunetutil.la  
313
314 test_fs_file_information_SOURCES = \
315  test_fs_file_information.c
316 test_fs_file_information_LDADD = \
317   -lextractor \
318   $(top_builddir)/src/fs/libgnunetfs.la  \
319   $(top_builddir)/src/util/libgnunetutil.la  
320
321 test_fs_getopt_SOURCES = \
322  test_fs_getopt.c
323 test_fs_getopt_LDADD = \
324   $(top_builddir)/src/fs/libgnunetfs.la  \
325   $(top_builddir)/src/util/libgnunetutil.la  
326
327 test_fs_list_indexed_SOURCES = \
328  test_fs_list_indexed.c
329 test_fs_list_indexed_LDADD = \
330   $(top_builddir)/src/testing/libgnunettesting.la \
331   $(top_builddir)/src/fs/libgnunetfs.la  \
332   $(top_builddir)/src/util/libgnunetutil.la  
333
334 test_fs_namespace_SOURCES = \
335  test_fs_namespace.c
336 test_fs_namespace_LDADD = \
337   $(top_builddir)/src/testing/libgnunettesting.la \
338   $(top_builddir)/src/fs/libgnunetfs.la  \
339   $(top_builddir)/src/util/libgnunetutil.la  
340
341 test_fs_namespace_list_updateable_SOURCES = \
342  test_fs_namespace_list_updateable.c
343 test_fs_namespace_list_updateable_LDADD = \
344   $(top_builddir)/src/testing/libgnunettesting.la \
345   $(top_builddir)/src/fs/libgnunetfs.la  \
346   $(top_builddir)/src/util/libgnunetutil.la  
347
348 test_fs_publish_SOURCES = \
349  test_fs_publish.c
350 test_fs_publish_LDADD = \
351   $(top_builddir)/src/testing/libgnunettesting.la \
352   $(top_builddir)/src/fs/libgnunetfs.la  \
353   $(top_builddir)/src/util/libgnunetutil.la  
354
355 test_fs_publish_persistence_SOURCES = \
356  test_fs_publish_persistence.c
357 test_fs_publish_persistence_LDADD = \
358   $(top_builddir)/src/testing/libgnunettesting.la \
359   $(top_builddir)/src/fs/libgnunetfs.la  \
360   $(top_builddir)/src/util/libgnunetutil.la  
361
362 test_fs_search_SOURCES = \
363  test_fs_search.c
364 test_fs_search_LDADD = \
365   $(top_builddir)/src/testing/libgnunettesting.la \
366   $(top_builddir)/src/fs/libgnunetfs.la \
367   $(top_builddir)/src/util/libgnunetutil.la
368
369 test_fs_search_probes_SOURCES = \
370  test_fs_search_probes.c
371 test_fs_search_probes_LDADD = \
372   $(top_builddir)/src/testing/libgnunettesting.la \
373   $(top_builddir)/src/fs/libgnunetfs.la \
374   $(top_builddir)/src/util/libgnunetutil.la
375
376 test_fs_search_persistence_SOURCES = \
377  test_fs_search_persistence.c
378 test_fs_search_persistence_LDADD = \
379   $(top_builddir)/src/testing/libgnunettesting.la \
380   $(top_builddir)/src/fs/libgnunetfs.la \
381   $(top_builddir)/src/util/libgnunetutil.la
382
383 test_fs_start_stop_SOURCES = \
384  test_fs_start_stop.c
385 test_fs_start_stop_LDADD = \
386   $(top_builddir)/src/testing/libgnunettesting.la \
387   $(top_builddir)/src/fs/libgnunetfs.la  \
388   $(top_builddir)/src/util/libgnunetutil.la  
389
390 test_fs_unindex_SOURCES = \
391  test_fs_unindex.c
392 test_fs_unindex_LDADD = \
393   $(top_builddir)/src/testing/libgnunettesting.la \
394   $(top_builddir)/src/fs/libgnunetfs.la \
395   $(top_builddir)/src/util/libgnunetutil.la  
396
397 test_fs_unindex_persistence_SOURCES = \
398  test_fs_unindex_persistence.c
399 test_fs_unindex_persistence_LDADD = \
400   $(top_builddir)/src/testing/libgnunettesting.la \
401   $(top_builddir)/src/fs/libgnunetfs.la \
402   $(top_builddir)/src/util/libgnunetutil.la  
403
404 test_fs_uri_SOURCES = \
405  test_fs_uri.c
406 test_fs_uri_LDADD = \
407   $(top_builddir)/src/fs/libgnunetfs.la  \
408   $(top_builddir)/src/util/libgnunetutil.la  
409
410 test_fs_test_lib_SOURCES = \
411  test_fs_test_lib.c
412 test_fs_test_lib_LDADD = \
413   $(top_builddir)/src/fs/libgnunetfstest.a \
414   $(top_builddir)/src/testbed/libgnunettestbed.la \
415   $(top_builddir)/src/fs/libgnunetfs.la  \
416   $(top_builddir)/src/util/libgnunetutil.la  
417
418 test_gnunet_service_fs_p2p_SOURCES = \
419  test_gnunet_service_fs_p2p.c
420 test_gnunet_service_fs_p2p_LDADD = \
421   $(top_builddir)/src/fs/libgnunetfstest.a \
422   $(top_builddir)/src/testbed/libgnunettestbed.la \
423   $(top_builddir)/src/fs/libgnunetfs.la  \
424   $(top_builddir)/src/util/libgnunetutil.la  
425
426 test_gnunet_service_fs_migration_SOURCES = \
427  test_gnunet_service_fs_migration.c
428 test_gnunet_service_fs_migration_LDADD = \
429   $(top_builddir)/src/fs/libgnunetfstest.a \
430   $(top_builddir)/src/testbed/libgnunettestbed.la \
431   $(top_builddir)/src/fs/libgnunetfs.la  \
432   $(top_builddir)/src/util/libgnunetutil.la  
433
434 perf_gnunet_service_fs_p2p_SOURCES = \
435  perf_gnunet_service_fs_p2p.c
436 perf_gnunet_service_fs_p2p_LDADD = \
437   $(top_builddir)/src/fs/libgnunetfstest.a \
438   $(top_builddir)/src/statistics/libgnunetstatistics.la \
439   $(top_builddir)/src/testbed/libgnunettestbed.la \
440   $(top_builddir)/src/fs/libgnunetfs.la  \
441   $(top_builddir)/src/util/libgnunetutil.la  
442
443 perf_gnunet_service_fs_p2p_index_SOURCES = \
444  perf_gnunet_service_fs_p2p.c
445 perf_gnunet_service_fs_p2p_index_LDADD = \
446   $(top_builddir)/src/fs/libgnunetfstest.a \
447   $(top_builddir)/src/statistics/libgnunetstatistics.la \
448   $(top_builddir)/src/testbed/libgnunettestbed.la \
449   $(top_builddir)/src/fs/libgnunetfs.la  \
450   $(top_builddir)/src/util/libgnunetutil.la  
451
452 perf_gnunet_service_fs_p2p_dht_SOURCES = \
453  perf_gnunet_service_fs_p2p.c
454 perf_gnunet_service_fs_p2p_dht_LDADD = \
455   $(top_builddir)/src/fs/libgnunetfstest.a \
456   $(top_builddir)/src/statistics/libgnunetstatistics.la \
457   $(top_builddir)/src/testbed/libgnunettestbed.la \
458   $(top_builddir)/src/fs/libgnunetfs.la  \
459   $(top_builddir)/src/util/libgnunetutil.la  
460
461 perf_gnunet_service_fs_p2p_respect_SOURCES = \
462  perf_gnunet_service_fs_p2p_respect.c
463 perf_gnunet_service_fs_p2p_respect_LDADD = \
464   $(top_builddir)/src/fs/libgnunetfstest.a \
465   $(top_builddir)/src/statistics/libgnunetstatistics.la \
466   $(top_builddir)/src/testbed/libgnunettestbed.la \
467   $(top_builddir)/src/fs/libgnunetfs.la  \
468   $(top_builddir)/src/util/libgnunetutil.la  
469
470
471 do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'
472
473 test_gnunet_fs_psd.py: test_gnunet_fs_psd.py.in Makefile
474         $(do_subst) < $(srcdir)/test_gnunet_fs_psd.py.in > test_gnunet_fs_psd.py
475         chmod +x test_gnunet_fs_psd.py
476
477 test_gnunet_fs_rec.py: test_gnunet_fs_rec.py.in Makefile
478         $(do_subst) < $(srcdir)/test_gnunet_fs_rec.py.in > test_gnunet_fs_rec.py
479         chmod +x test_gnunet_fs_rec.py
480
481 test_gnunet_fs_ns.py: test_gnunet_fs_ns.py.in Makefile
482         $(do_subst) < $(srcdir)/test_gnunet_fs_ns.py.in > test_gnunet_fs_ns.py
483         chmod +x test_gnunet_fs_ns.py
484
485 test_gnunet_fs_idx.py: test_gnunet_fs_idx.py.in Makefile
486         $(do_subst) < $(srcdir)/test_gnunet_fs_idx.py.in > test_gnunet_fs_idx.py
487         chmod +x test_gnunet_fs_idx.py
488
489
490 EXTRA_DIST = \
491   test_fs_defaults.conf \
492   fs_test_lib_data.conf \
493   test_fs_data.conf \
494   test_fs_download_data.conf \
495   test_fs_file_information_data.conf \
496   fs_test_lib_data.conf \
497   test_fs_list_indexed_data.conf \
498   test_fs_namespace_data.conf \
499   test_fs_publish_data.conf \
500   test_fs_search_data.conf \
501   test_fs_unindex_data.conf \
502   test_fs_uri_data.conf \
503   test_gnunet_service_fs_migration_data.conf \
504   test_gnunet_fs_idx_data.conf \
505   test_gnunet_fs_ns_data.conf \
506   test_gnunet_fs_psd_data.conf \
507   test_gnunet_fs_rec_data.conf \
508   perf_gnunet_service_fs_p2p.conf \
509   test_gnunet_fs_rec_data.tgz \
510   test_gnunet_fs_psd.py.in \
511   test_gnunet_fs_rec.py.in \
512   test_gnunet_fs_ns.py.in \
513   test_gnunet_fs_idx.py.in \
514   $(bin_SCRIPTS) 
515
516 CLEANFILES = $(check_SCRIPTS)