Makefile.am 16 KB

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