Makefile.am 15 KB

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