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