Makefile.am 15 KB

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