Make building gnunet-testing lib optional.
[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 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_pseudonym.c \
40   fs_publish.c \
41   fs_publish_ksk.c \
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) -lunistring -lextractor -lgcrypt
54
55 libgnunetfs_la_LDFLAGS = \
56   $(GN_LIB_LDFLAGS)  $(WINFLAGS) \
57   -version-info 3:0: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-pseudonym \
83   gnunet-search \
84   gnunet-fs \
85   gnunet-unindex 
86
87 bin_SCRIPTS = \
88   gnunet-download-manager.scm
89
90 gnunet_directory_SOURCES = \
91  gnunet-directory.c
92 gnunet_directory_LDADD = \
93   $(top_builddir)/src/fs/libgnunetfs.la \
94   $(top_builddir)/src/util/libgnunetutil.la \
95   -lextractor \
96   $(GN_LIBINTL)
97 gnunet_directory_DEPENDENCIES = \
98   libgnunetfs.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
107 gnunet_fs_SOURCES = \
108  gnunet-fs.c
109 gnunet_fs_LDADD = \
110   $(top_builddir)/src/fs/libgnunetfs.la \
111   $(top_builddir)/src/util/libgnunetutil.la \
112   -lextractor \
113   $(GN_LIBINTL)
114 gnunet_fs_DEPENDENCIES = \
115   libgnunetfs.la
116
117 gnunet_download_SOURCES =  \
118  gnunet-download.c         
119 gnunet_download_LDADD =  \
120  $(top_builddir)/src/fs/libgnunetfs.la \
121  $(top_builddir)/src/util/libgnunetutil.la \
122  $(GN_LIBINTL)
123 gnunet_download_DEPENDENCIES = \
124   libgnunetfs.la
125
126 gnunet_publish_SOURCES =  \
127  gnunet-publish.c         
128 gnunet_publish_LDADD =  \
129  $(top_builddir)/src/fs/libgnunetfs.la \
130  $(top_builddir)/src/util/libgnunetutil.la \
131  -lextractor \
132  $(GN_LIBINTL)
133 gnunet_publish_DEPENDENCIES = \
134   libgnunetfs.la
135
136 gnunet_auto_share_SOURCES =  \
137  gnunet-auto-share.c         
138 gnunet_auto_share_LDADD =  \
139  $(top_builddir)/src/util/libgnunetutil.la \
140  -lextractor \
141  $(GN_LIBINTL)
142 gnunet_auto_share_DEPENDENCIES = \
143   libgnunetfs.la
144
145 gnunet_helper_fs_publish_SOURCES =  \
146  gnunet-helper-fs-publish.c 
147 gnunet_helper_fs_publish_LDADD =  \
148  $(top_builddir)/src/util/libgnunetutil.la \
149  -lextractor \
150  $(GN_LIBINTL)
151 gnunet_helper_fs_publish_DEPENDENCIES = \
152   libgnunetfs.la
153
154 gnunet_pseudonym_SOURCES = \
155  gnunet-pseudonym.c
156 gnunet_pseudonym_LDADD = \
157   $(top_builddir)/src/fs/libgnunetfs.la \
158   $(top_builddir)/src/util/libgnunetutil.la \
159   -lextractor \
160   $(GN_LIBINTL)
161 gnunet_pseudonym_DEPENDENCIES = \
162   libgnunetfs.la
163
164 gnunet_search_SOURCES = \
165  gnunet-search.c         
166 gnunet_search_LDADD = \
167   $(top_builddir)/src/fs/libgnunetfs.la \
168   $(top_builddir)/src/util/libgnunetutil.la \
169  -lextractor \
170   $(GN_LIBINTL)
171 gnunet_search_DEPENDENCIES = \
172   libgnunetfs.la
173
174 gnunet_daemon_fsprofiler_SOURCES =  \
175  gnunet-daemon-fsprofiler.c
176 gnunet_daemon_fsprofiler_LDADD = \
177   $(top_builddir)/src/fs/libgnunetfs.la \
178   $(top_builddir)/src/statistics/libgnunetstatistics.la \
179   $(top_builddir)/src/util/libgnunetutil.la \
180   $(GN_LIBINTL)
181 gnunet_daemon_fsprofiler_DEPENDENCIES = \
182   libgnunetfs.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_mesh.c gnunet-service-fs_mesh.h 
194 gnunet_service_fs_LDADD =  \
195  $(top_builddir)/src/fs/libgnunetfs.la \
196  $(top_builddir)/src/dht/libgnunetdht.la \
197  $(top_builddir)/src/block/libgnunetblock.la \
198  $(top_builddir)/src/datastore/libgnunetdatastore.la \
199  $(top_builddir)/src/statistics/libgnunetstatistics.la \
200  $(top_builddir)/src/mesh/libgnunetmesh.la \
201  $(top_builddir)/src/ats/libgnunetats.la \
202  $(top_builddir)/src/core/libgnunetcore.la \
203  $(top_builddir)/src/util/libgnunetutil.la \
204  $(GN_LIBINTL) -lm
205 gnunet_service_fs_DEPENDENCIES = \
206   libgnunetfs.la
207
208 gnunet_unindex_SOURCES = \
209  gnunet-unindex.c         
210 gnunet_unindex_LDADD = \
211   $(top_builddir)/src/fs/libgnunetfs.la \
212   $(top_builddir)/src/util/libgnunetutil.la \
213   $(GN_LIBINTL)
214 gnunet_unindex_DEPENDENCIES = \
215   libgnunetfs.la
216
217
218 libgnunet_plugin_block_fs_la_SOURCES = \
219   plugin_block_fs.c
220 libgnunet_plugin_block_fs_la_LIBADD = \
221   $(top_builddir)/src/block/libgnunetblock.la \
222   $(top_builddir)/src/fs/libgnunetfs.la \
223   $(top_builddir)/src/util/libgnunetutil.la \
224   $(LTLIBINTL)
225 libgnunet_plugin_block_fs_la_LDFLAGS = \
226  $(GN_PLUGIN_LDFLAGS)
227 libgnunet_plugin_block_fs_la_DEPENDENCIES = \
228   $(top_builddir)/src/util/libgnunetutil.la \
229   $(top_builddir)/src/block/libgnunetblock.la \
230   libgnunetfs.la
231
232
233
234 if HAVE_BENCHMARKS
235  FS_BENCHMARKS = \
236  perf_gnunet_service_fs_p2p \
237  perf_gnunet_service_fs_p2p_dht \
238  perf_gnunet_service_fs_p2p_index \
239  perf_gnunet_service_fs_p2p_respect 
240 endif
241
242 if HAVE_TESTING
243 check_PROGRAMS = \
244  test_plugin_block_fs \
245  test_fs_directory \
246  test_fs_download \
247  test_fs_download_mesh \
248  test_fs_download_indexed \
249  test_fs_download_persistence \
250  test_fs_file_information \
251  test_fs_getopt \
252  test_fs_list_indexed \
253  test_fs_namespace \
254  test_fs_namespace_list_updateable \
255  test_pseudonym \
256  test_fs_publish \
257  test_fs_publish_persistence \
258  test_fs_search \
259  test_fs_search_probes \
260  test_fs_search_persistence \
261  test_fs_start_stop \
262  test_fs_test_lib \
263  test_fs_unindex \
264  test_fs_unindex_persistence \
265  test_fs_uri \
266  test_gnunet_service_fs_migration \
267  test_gnunet_service_fs_p2p \
268  test_gnunet_service_fs_p2p_mesh \
269  $(FS_BENCHMARKS)
270 endif
271
272 test_plugin_block_fs_SOURCES = \
273  test_plugin_block_fs.c
274 test_plugin_block_fs_LDADD = \
275  $(top_builddir)/src/block/libgnunetblock.la \
276  $(top_builddir)/src/util/libgnunetutil.la  
277
278 if HAVE_PYTHON
279 check_SCRIPTS = \
280  test_gnunet_fs_psd.py \
281  test_gnunet_fs_rec.py \
282  test_gnunet_fs_idx.py \
283  test_gnunet_fs_ns.py 
284 endif
285
286 if ENABLE_MONKEY
287  TESTS_ENVIRONMENT = @MONKEYPREFIX@
288  AM_LDFLAGS = -no-install
289 endif
290
291
292 if ENABLE_TEST_RUN
293 TESTS = \
294  test_fs_directory \
295  test_fs_download \
296  test_fs_download_indexed \
297  test_fs_download_persistence \
298  test_fs_file_information \
299  test_fs_list_indexed \
300  test_fs_namespace \
301  test_fs_namespace_list_updateable \
302  test_pseudonym \
303  test_fs_publish \
304  test_fs_publish_persistence \
305  test_fs_search \
306  test_fs_search_probes \
307  test_fs_search_persistence \
308  test_fs_start_stop \
309  test_fs_unindex \
310  test_fs_unindex_persistence \
311  test_fs_uri \
312  test_fs_test_lib \
313  test_gnunet_service_fs_migration \
314  test_gnunet_service_fs_p2p \
315  test_gnunet_service_fs_p2p_mesh \
316  perf_gnunet_service_fs_p2p \
317  perf_gnunet_service_fs_p2p_index \
318  perf_gnunet_service_fs_p2p_respect \
319  $(check_SCRIPTS)  
320 endif
321
322
323 test_pseudonym_SOURCES = \
324  test_pseudonym.c
325 test_pseudonym_LDADD = \
326  -lgcrypt \
327  $(top_builddir)/src/fs/libgnunetfs.la  \
328  $(top_builddir)/src/util/libgnunetutil.la  
329
330
331 test_fs_directory_SOURCES = \
332  test_fs_directory.c
333 test_fs_directory_LDADD = \
334   -lextractor \
335   $(top_builddir)/src/fs/libgnunetfs.la  \
336   $(top_builddir)/src/util/libgnunetutil.la  
337
338 test_fs_download_SOURCES = \
339  test_fs_download.c
340 test_fs_download_LDADD = \
341   $(top_builddir)/src/testing/libgnunettesting.la  \
342   $(top_builddir)/src/fs/libgnunetfs.la  \
343   $(top_builddir)/src/util/libgnunetutil.la  
344
345 test_fs_download_indexed_SOURCES = \
346  test_fs_download.c
347 test_fs_download_indexed_LDADD = \
348   $(top_builddir)/src/testing/libgnunettesting.la  \
349   $(top_builddir)/src/fs/libgnunetfs.la  \
350   $(top_builddir)/src/util/libgnunetutil.la  
351
352 test_fs_download_mesh_SOURCES = \
353  test_fs_download.c
354 test_fs_download_mesh_LDADD = \
355   $(top_builddir)/src/testing/libgnunettesting.la  \
356   $(top_builddir)/src/fs/libgnunetfs.la  \
357   $(top_builddir)/src/util/libgnunetutil.la  
358
359 test_fs_download_persistence_SOURCES = \
360  test_fs_download_persistence.c
361 test_fs_download_persistence_LDADD = \
362   $(top_builddir)/src/testing/libgnunettesting.la  \
363   $(top_builddir)/src/fs/libgnunetfs.la  \
364   $(top_builddir)/src/util/libgnunetutil.la  
365
366 test_fs_file_information_SOURCES = \
367  test_fs_file_information.c
368 test_fs_file_information_LDADD = \
369   -lextractor \
370   $(top_builddir)/src/fs/libgnunetfs.la  \
371   $(top_builddir)/src/util/libgnunetutil.la  
372
373 test_fs_getopt_SOURCES = \
374  test_fs_getopt.c
375 test_fs_getopt_LDADD = \
376   $(top_builddir)/src/fs/libgnunetfs.la  \
377   $(top_builddir)/src/util/libgnunetutil.la  
378
379 test_fs_list_indexed_SOURCES = \
380  test_fs_list_indexed.c
381 test_fs_list_indexed_LDADD = \
382   $(top_builddir)/src/testing/libgnunettesting.la \
383   $(top_builddir)/src/fs/libgnunetfs.la  \
384   $(top_builddir)/src/util/libgnunetutil.la  
385
386 test_fs_namespace_SOURCES = \
387  test_fs_namespace.c
388 test_fs_namespace_LDADD = \
389   $(top_builddir)/src/testing/libgnunettesting.la \
390   $(top_builddir)/src/fs/libgnunetfs.la  \
391   $(top_builddir)/src/util/libgnunetutil.la  
392
393 test_fs_namespace_list_updateable_SOURCES = \
394  test_fs_namespace_list_updateable.c
395 test_fs_namespace_list_updateable_LDADD = \
396   $(top_builddir)/src/testing/libgnunettesting.la \
397   $(top_builddir)/src/fs/libgnunetfs.la  \
398   $(top_builddir)/src/util/libgnunetutil.la  
399
400 test_fs_publish_SOURCES = \
401  test_fs_publish.c
402 test_fs_publish_LDADD = \
403   $(top_builddir)/src/testing/libgnunettesting.la \
404   $(top_builddir)/src/fs/libgnunetfs.la  \
405   $(top_builddir)/src/util/libgnunetutil.la  
406
407 test_fs_publish_persistence_SOURCES = \
408  test_fs_publish_persistence.c
409 test_fs_publish_persistence_LDADD = \
410   $(top_builddir)/src/testing/libgnunettesting.la \
411   $(top_builddir)/src/fs/libgnunetfs.la  \
412   $(top_builddir)/src/util/libgnunetutil.la  
413
414 test_fs_search_SOURCES = \
415  test_fs_search.c
416 test_fs_search_LDADD = \
417   $(top_builddir)/src/testing/libgnunettesting.la \
418   $(top_builddir)/src/fs/libgnunetfs.la \
419   $(top_builddir)/src/util/libgnunetutil.la
420
421 test_fs_search_probes_SOURCES = \
422  test_fs_search_probes.c
423 test_fs_search_probes_LDADD = \
424   $(top_builddir)/src/testing/libgnunettesting.la \
425   $(top_builddir)/src/fs/libgnunetfs.la \
426   $(top_builddir)/src/util/libgnunetutil.la
427
428 test_fs_search_persistence_SOURCES = \
429  test_fs_search_persistence.c
430 test_fs_search_persistence_LDADD = \
431   $(top_builddir)/src/testing/libgnunettesting.la \
432   $(top_builddir)/src/fs/libgnunetfs.la \
433   $(top_builddir)/src/util/libgnunetutil.la
434
435 test_fs_start_stop_SOURCES = \
436  test_fs_start_stop.c
437 test_fs_start_stop_LDADD = \
438   $(top_builddir)/src/testing/libgnunettesting.la \
439   $(top_builddir)/src/fs/libgnunetfs.la  \
440   $(top_builddir)/src/util/libgnunetutil.la  
441
442 test_fs_unindex_SOURCES = \
443  test_fs_unindex.c
444 test_fs_unindex_LDADD = \
445   $(top_builddir)/src/testing/libgnunettesting.la \
446   $(top_builddir)/src/fs/libgnunetfs.la \
447   $(top_builddir)/src/util/libgnunetutil.la  
448
449 test_fs_unindex_persistence_SOURCES = \
450  test_fs_unindex_persistence.c
451 test_fs_unindex_persistence_LDADD = \
452   $(top_builddir)/src/testing/libgnunettesting.la \
453   $(top_builddir)/src/fs/libgnunetfs.la \
454   $(top_builddir)/src/util/libgnunetutil.la  
455
456 test_fs_uri_SOURCES = \
457  test_fs_uri.c
458 test_fs_uri_LDADD = \
459   $(top_builddir)/src/fs/libgnunetfs.la  \
460   $(top_builddir)/src/util/libgnunetutil.la  
461
462 test_fs_test_lib_SOURCES = \
463  test_fs_test_lib.c
464 test_fs_test_lib_LDADD = \
465   $(top_builddir)/src/fs/libgnunetfstest.a \
466   $(top_builddir)/src/testbed/libgnunettestbed.la \
467   $(top_builddir)/src/fs/libgnunetfs.la  \
468   $(top_builddir)/src/util/libgnunetutil.la  
469
470 test_gnunet_service_fs_p2p_SOURCES = \
471  test_gnunet_service_fs_p2p.c
472 test_gnunet_service_fs_p2p_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_mesh_SOURCES = \
479  test_gnunet_service_fs_p2p.c
480 test_gnunet_service_fs_p2p_mesh_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_migration_SOURCES = \
487  test_gnunet_service_fs_migration.c
488 test_gnunet_service_fs_migration_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 perf_gnunet_service_fs_p2p_SOURCES = \
495  perf_gnunet_service_fs_p2p.c
496 perf_gnunet_service_fs_p2p_LDADD = \
497   $(top_builddir)/src/fs/libgnunetfstest.a \
498   $(top_builddir)/src/statistics/libgnunetstatistics.la \
499   $(top_builddir)/src/testbed/libgnunettestbed.la \
500   $(top_builddir)/src/fs/libgnunetfs.la  \
501   $(top_builddir)/src/util/libgnunetutil.la  
502
503 perf_gnunet_service_fs_p2p_index_SOURCES = \
504  perf_gnunet_service_fs_p2p.c
505 perf_gnunet_service_fs_p2p_index_LDADD = \
506   $(top_builddir)/src/fs/libgnunetfstest.a \
507   $(top_builddir)/src/statistics/libgnunetstatistics.la \
508   $(top_builddir)/src/testbed/libgnunettestbed.la \
509   $(top_builddir)/src/fs/libgnunetfs.la  \
510   $(top_builddir)/src/util/libgnunetutil.la  
511
512 perf_gnunet_service_fs_p2p_dht_SOURCES = \
513  perf_gnunet_service_fs_p2p.c
514 perf_gnunet_service_fs_p2p_dht_LDADD = \
515   $(top_builddir)/src/fs/libgnunetfstest.a \
516   $(top_builddir)/src/statistics/libgnunetstatistics.la \
517   $(top_builddir)/src/testbed/libgnunettestbed.la \
518   $(top_builddir)/src/fs/libgnunetfs.la  \
519   $(top_builddir)/src/util/libgnunetutil.la  
520
521 perf_gnunet_service_fs_p2p_respect_SOURCES = \
522  perf_gnunet_service_fs_p2p_respect.c
523 perf_gnunet_service_fs_p2p_respect_LDADD = \
524   $(top_builddir)/src/fs/libgnunetfstest.a \
525   $(top_builddir)/src/statistics/libgnunetstatistics.la \
526   $(top_builddir)/src/testbed/libgnunettestbed.la \
527   $(top_builddir)/src/fs/libgnunetfs.la  \
528   $(top_builddir)/src/util/libgnunetutil.la  
529
530
531 do_subst = $(SED) -e 's,[@]PYTHON[@],$(PYTHON),g'
532
533 test_gnunet_fs_psd.py: test_gnunet_fs_psd.py.in Makefile
534         $(do_subst) < $(srcdir)/test_gnunet_fs_psd.py.in > test_gnunet_fs_psd.py
535         chmod +x test_gnunet_fs_psd.py
536
537 test_gnunet_fs_rec.py: test_gnunet_fs_rec.py.in Makefile
538         $(do_subst) < $(srcdir)/test_gnunet_fs_rec.py.in > test_gnunet_fs_rec.py
539         chmod +x test_gnunet_fs_rec.py
540
541 test_gnunet_fs_ns.py: test_gnunet_fs_ns.py.in Makefile
542         $(do_subst) < $(srcdir)/test_gnunet_fs_ns.py.in > test_gnunet_fs_ns.py
543         chmod +x test_gnunet_fs_ns.py
544
545 test_gnunet_fs_idx.py: test_gnunet_fs_idx.py.in Makefile
546         $(do_subst) < $(srcdir)/test_gnunet_fs_idx.py.in > test_gnunet_fs_idx.py
547         chmod +x test_gnunet_fs_idx.py
548
549
550 EXTRA_DIST = \
551   test_fs_defaults.conf \
552   fs_test_lib_data.conf \
553   test_fs_data.conf \
554   test_fs_download_data.conf \
555   test_fs_download_indexed.conf \
556   test_fs_download_mesh.conf \
557   test_fs_file_information_data.conf \
558   fs_test_lib_data.conf \
559   test_fs_list_indexed_data.conf \
560   test_fs_namespace_data.conf \
561   test_fs_publish_data.conf \
562   test_fs_search_data.conf \
563   test_fs_unindex_data.conf \
564   test_fs_uri_data.conf \
565   test_gnunet_service_fs_migration_data.conf \
566   test_gnunet_service_fs_p2p_mesh.conf \
567   test_gnunet_fs_idx_data.conf \
568   test_gnunet_fs_ns_data.conf \
569   test_gnunet_fs_psd_data.conf \
570   test_gnunet_fs_rec_data.conf \
571   perf_gnunet_service_fs_p2p.conf \
572   test_gnunet_fs_rec_data.tgz \
573   test_gnunet_fs_psd.py.in \
574   test_gnunet_fs_rec.py.in \
575   test_gnunet_fs_ns.py.in \
576   test_gnunet_fs_idx.py.in \
577   test_pseudonym_data.conf \
578   $(bin_SCRIPTS) 
579
580 CLEANFILES = $(check_SCRIPTS)