Makefile.am 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. # Copyright (c) 2001-2004, Roger Dingledine
  2. # Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  3. # Copyright (c) 2007-2019, The Tor Project, Inc.
  4. # See LICENSE for licensing information
  5. ACLOCAL_AMFLAGS = -I m4
  6. noinst_LIBRARIES=
  7. EXTRA_DIST=
  8. noinst_HEADERS=
  9. bin_PROGRAMS=
  10. EXTRA_PROGRAMS=
  11. CLEANFILES=
  12. TESTS=
  13. noinst_PROGRAMS=
  14. DISTCLEANFILES=
  15. bin_SCRIPTS=
  16. AM_CPPFLAGS=\
  17. -I$(top_srcdir)/src \
  18. -I$(top_srcdir)/src/ext \
  19. -I$(top_srcdir)/src/ext/trunnel \
  20. -I$(top_srcdir)/src/trunnel
  21. AM_CFLAGS=@TOR_SYSTEMD_CFLAGS@ @CFLAGS_BUGTRAP@ @TOR_LZMA_CFLAGS@ @TOR_ZSTD_CFLAGS@
  22. SHELL=@SHELL@
  23. if COVERAGE_ENABLED
  24. TESTING_TOR_BINARY=$(top_builddir)/src/app/tor-cov$(EXEEXT)
  25. else
  26. TESTING_TOR_BINARY=$(top_builddir)/src/app/tor$(EXEEXT)
  27. endif
  28. if USE_RUST
  29. ## this MUST be $(), otherwise am__DEPENDENCIES will not track it
  30. rust_ldadd=$(top_builddir)/$(TOR_RUST_LIB_PATH) \
  31. $(TOR_RUST_EXTRA_LIBS)
  32. else
  33. rust_ldadd=
  34. endif
  35. # "Common" libraries used to link tor's utility code.
  36. TOR_UTIL_LIBS = \
  37. src/lib/libtor-geoip.a \
  38. src/lib/libtor-process.a \
  39. src/lib/libtor-time.a \
  40. src/lib/libtor-fs.a \
  41. src/lib/libtor-encoding.a \
  42. src/lib/libtor-sandbox.a \
  43. src/lib/libtor-container.a \
  44. src/lib/libtor-net.a \
  45. src/lib/libtor-thread.a \
  46. src/lib/libtor-memarea.a \
  47. src/lib/libtor-math.a \
  48. src/lib/libtor-meminfo.a \
  49. src/lib/libtor-osinfo.a \
  50. src/lib/libtor-log.a \
  51. src/lib/libtor-lock.a \
  52. src/lib/libtor-fdio.a \
  53. src/lib/libtor-string.a \
  54. src/lib/libtor-term.a \
  55. src/lib/libtor-smartlist-core.a \
  56. src/lib/libtor-malloc.a \
  57. src/lib/libtor-wallclock.a \
  58. src/lib/libtor-err.a \
  59. src/lib/libtor-intmath.a \
  60. src/lib/libtor-ctime.a
  61. # Variants of the above for linking the testing variant of tor (for coverage
  62. # and tests)
  63. if UNITTESTS_ENABLED
  64. TOR_UTIL_TESTING_LIBS = \
  65. src/lib/libtor-geoip-testing.a \
  66. src/lib/libtor-process-testing.a \
  67. src/lib/libtor-time-testing.a \
  68. src/lib/libtor-fs-testing.a \
  69. src/lib/libtor-encoding-testing.a \
  70. src/lib/libtor-sandbox-testing.a \
  71. src/lib/libtor-container-testing.a \
  72. src/lib/libtor-net-testing.a \
  73. src/lib/libtor-thread-testing.a \
  74. src/lib/libtor-memarea-testing.a \
  75. src/lib/libtor-math-testing.a \
  76. src/lib/libtor-meminfo-testing.a \
  77. src/lib/libtor-osinfo-testing.a \
  78. src/lib/libtor-term-testing.a \
  79. src/lib/libtor-log-testing.a \
  80. src/lib/libtor-lock-testing.a \
  81. src/lib/libtor-fdio-testing.a \
  82. src/lib/libtor-string-testing.a \
  83. src/lib/libtor-smartlist-core-testing.a \
  84. src/lib/libtor-malloc-testing.a \
  85. src/lib/libtor-wallclock-testing.a \
  86. src/lib/libtor-err-testing.a \
  87. src/lib/libtor-intmath.a \
  88. src/lib/libtor-ctime-testing.a
  89. endif
  90. # Internal crypto libraries used in Tor
  91. TOR_CRYPTO_LIBS = \
  92. src/lib/libtor-tls.a \
  93. src/lib/libtor-crypt-ops.a \
  94. $(LIBKECCAK_TINY) \
  95. $(LIBDONNA)
  96. # Variants of the above for linking the testing variant of tor (for coverage
  97. # and tests)
  98. if UNITTESTS_ENABLED
  99. TOR_CRYPTO_TESTING_LIBS = \
  100. src/lib/libtor-tls-testing.a \
  101. src/lib/libtor-crypt-ops-testing.a \
  102. $(LIBKECCAK_TINY) \
  103. $(LIBDONNA)
  104. endif
  105. # All static libraries used to link tor.
  106. TOR_INTERNAL_LIBS = \
  107. src/core/libtor-app.a \
  108. src/lib/libtor-compress.a \
  109. src/lib/libtor-evloop.a \
  110. $(TOR_CRYPTO_LIBS) \
  111. $(TOR_UTIL_LIBS) \
  112. src/trunnel/libor-trunnel.a \
  113. src/lib/libtor-trace.a
  114. # Variants of the above for linking the testing variant of tor (for coverage
  115. # and tests)
  116. if UNITTESTS_ENABLED
  117. TOR_INTERNAL_TESTING_LIBS = \
  118. src/core/libtor-app-testing.a \
  119. src/lib/libtor-compress-testing.a \
  120. src/lib/libtor-evloop-testing.a \
  121. $(TOR_CRYPTO_TESTING_LIBS) \
  122. $(TOR_UTIL_TESTING_LIBS) \
  123. src/trunnel/libor-trunnel-testing.a \
  124. src/lib/libtor-trace.a
  125. endif
  126. TOR_LDFLAGS_CRYPTLIB=@TOR_LDFLAGS_openssl@
  127. TOR_LIBS_CRYPTLIB=@TOR_OPENSSL_LIBS@
  128. TOR_CFLAGS_CRYPTLIB=
  129. if USE_NSS
  130. TOR_CFLAGS_CRYPTLIB+=@NSS_CFLAGS@
  131. TOR_LIBS_CRYPTLIB+=@NSS_LIBS@
  132. endif
  133. # All libraries used to link tor-cov
  134. include src/include.am
  135. include doc/include.am
  136. include contrib/include.am
  137. manpages: $(nodist_man1_MANS)
  138. EXTRA_DIST+= \
  139. ChangeLog \
  140. CONTRIBUTING \
  141. CODE_OF_CONDUCT \
  142. INSTALL \
  143. LICENSE \
  144. Makefile.nmake \
  145. README \
  146. ReleaseNotes \
  147. scripts/maint/checkIncludes.py \
  148. scripts/maint/checkSpace.pl
  149. ## This tells etags how to find mockable function definitions.
  150. AM_ETAGSFLAGS=--regex='{c}/MOCK_IMPL([^,]+,\W*\([a-zA-Z0-9_]+\)\W*,/\1/s'
  151. if COVERAGE_ENABLED
  152. TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
  153. if DISABLE_ASSERTS_IN_UNIT_TESTS
  154. TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE -DDISABLE_ASSERTS_IN_UNIT_TESTS @TOR_MODULES_ALL_ENABLED@
  155. else
  156. TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE @TOR_MODULES_ALL_ENABLED@
  157. endif
  158. TEST_NETWORK_FLAGS=--coverage --hs-multi-client 1
  159. else
  160. TEST_CFLAGS=
  161. TEST_CPPFLAGS=-DTOR_UNIT_TESTS @TOR_MODULES_ALL_ENABLED@
  162. TEST_NETWORK_FLAGS=--hs-multi-client 1
  163. endif
  164. TEST_NETWORK_WARNING_FLAGS=--quiet --only-warnings
  165. if LIBFUZZER_ENABLED
  166. TEST_CFLAGS += -fsanitize-coverage=trace-pc-guard,trace-cmp,trace-div
  167. # not "edge"
  168. endif
  169. TEST_NETWORK_ALL_LOG_DIR=$(top_builddir)/test_network_log
  170. TEST_NETWORK_ALL_DRIVER_FLAGS=--color-tests yes
  171. #install-data-local:
  172. # $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
  173. # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
  174. # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
  175. RPMBUILD ?= rpmbuild
  176. # Use automake's dist-gzip target to build the tarball
  177. dist-rpm: dist-gzip
  178. TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S"); \
  179. RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX"); \
  180. mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
  181. cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/; \
  182. LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec; \
  183. cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .; \
  184. cp -fa "$$RPM_BUILD_DIR"/RPMS/* .; \
  185. rm -rf "$$RPM_BUILD_DIR"; \
  186. echo "RPM build finished"; \
  187. #end of dist-rpm
  188. doxygen:
  189. doxygen && cd doc/doxygen/latex && make
  190. test: all
  191. $(top_builddir)/src/test/test
  192. check-local: check-spaces check-changes check-includes
  193. need-chutney-path:
  194. @if test ! -d "$$CHUTNEY_PATH"; then \
  195. echo '$$CHUTNEY_PATH was not set.'; \
  196. if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \
  197. echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \
  198. else \
  199. echo; \
  200. echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
  201. exit 1; \
  202. fi \
  203. fi
  204. # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
  205. # Chutney can be cloned from https://git.torproject.org/chutney.git .
  206. test-network: need-chutney-path $(TESTING_TOR_BINARY) src/tools/tor-gencert
  207. $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
  208. # Run all available tests using automake's test-driver
  209. # only run IPv6 tests if we can ping6 ::1 (localhost)
  210. # only run IPv6 tests if we can ping ::1 (localhost)
  211. # some IPv6 tests will fail without an IPv6 DNS server (see #16971 and #17011)
  212. # only run mixed tests if we have a tor-stable binary
  213. # Try the syntax for BSD ping6, Linux ping6, and Linux ping -6,
  214. # because they're incompatible
  215. test-network-all: need-chutney-path test-driver $(TESTING_TOR_BINARY) src/tools/tor-gencert
  216. mkdir -p $(TEST_NETWORK_ALL_LOG_DIR)
  217. rm -f $(TEST_NETWORK_ALL_LOG_DIR)/*.log $(TEST_NETWORK_ALL_LOG_DIR)/*.trs
  218. @flavors="$(TEST_CHUTNEY_FLAVORS)"; \
  219. if ping6 -q -c 1 -o ::1 >/dev/null 2>&1 || ping6 -q -c 1 -W 1 ::1 >/dev/null 2>&1 || ping -6 -c 1 -W 1 ::1 >/dev/null 2>&1; then \
  220. echo "ping6 ::1 or ping ::1 succeeded, running IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
  221. flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
  222. else \
  223. echo "ping6 ::1 and ping ::1 failed, skipping IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
  224. skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
  225. fi; \
  226. if command -v tor-stable >/dev/null 2>&1; then \
  227. echo "tor-stable found, running mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
  228. flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
  229. else \
  230. echo "tor-stable not found, skipping mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
  231. skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
  232. fi; \
  233. for f in $$skip_flavors; do \
  234. echo "SKIP: $$f"; \
  235. done; \
  236. for f in $$flavors; do \
  237. $(SHELL) $(top_srcdir)/test-driver --test-name $$f --log-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.log --trs-file $(TEST_NETWORK_ALL_LOG_DIR)/$$f.trs $(TEST_NETWORK_ALL_DRIVER_FLAGS) $(top_srcdir)/src/test/test-network.sh --flavor $$f $(TEST_NETWORK_FLAGS); \
  238. $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_WARNING_FLAGS); \
  239. done; \
  240. echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \
  241. ! grep -q FAIL $(TEST_NETWORK_ALL_LOG_DIR)/*.trs
  242. need-stem-path:
  243. @if test ! -d "$$STEM_SOURCE_DIR"; then \
  244. echo '$$STEM_SOURCE_DIR was not set.'; echo; \
  245. echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
  246. exit 1; \
  247. fi
  248. test-stem: need-stem-path $(TESTING_TOR_BINARY)
  249. @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --integ --test control.controller --test control.base_controller --test process --log notice;
  250. test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
  251. @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL,ONLINE -v;
  252. test-full: need-stem-path need-chutney-path check test-network test-stem
  253. test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
  254. # We can't delete the gcno files, because they are created when tor is compiled
  255. reset-gcov:
  256. rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda \
  257. $(top_builddir)/src/*/*.gcov $(top_builddir)/src/*/*/*.gcov
  258. HTML_COVER_DIR=$(top_builddir)/coverage_html
  259. coverage-html: all
  260. if COVERAGE_ENABLED
  261. test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
  262. test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
  263. lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
  264. $(MAKE) reset-gcov
  265. $(MAKE) check
  266. lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
  267. lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
  268. genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
  269. else
  270. @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
  271. endif
  272. coverage-html-full: all
  273. test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
  274. test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
  275. lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
  276. $(MAKE) reset-gcov
  277. $(MAKE) check
  278. $(MAKE) test-stem-full
  279. CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
  280. CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
  281. lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
  282. lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
  283. genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
  284. # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
  285. # tinytest*.[ch]
  286. check-spaces:
  287. if USE_PERL
  288. $(PERL) $(top_srcdir)/scripts/maint/checkSpace.pl -C \
  289. $(top_srcdir)/src/lib/*/*.[ch] \
  290. $(top_srcdir)/src/core/*/*.[ch] \
  291. $(top_srcdir)/src/feature/*/*.[ch] \
  292. $(top_srcdir)/src/app/*/*.[ch] \
  293. $(top_srcdir)/src/test/*.[ch] \
  294. $(top_srcdir)/src/test/*/*.[ch] \
  295. $(top_srcdir)/src/tools/*.[ch]
  296. endif
  297. check-includes:
  298. if USEPYTHON
  299. $(PYTHON) $(top_srcdir)/scripts/maint/checkIncludes.py
  300. endif
  301. check-docs: all
  302. $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
  303. check-logs:
  304. $(top_srcdir)/scripts/maint/checkLogs.pl \
  305. $(top_srcdir)/src/*/*.[ch] | sort -n
  306. .PHONY: check-typos
  307. check-typos:
  308. @if test -x "`which misspell 2>&1;true`"; then \
  309. echo "Checking for Typos ..."; \
  310. (misspell \
  311. $(top_srcdir)/src/[^e]*/*.[ch] \
  312. $(top_srcdir)/doc \
  313. $(top_srcdir)/contrib \
  314. $(top_srcdir)/scripts \
  315. $(top_srcdir)/README \
  316. $(top_srcdir)/ChangeLog \
  317. $(top_srcdir)/INSTALL \
  318. $(top_srcdir)/ReleaseNotes \
  319. $(top_srcdir)/LICENSE); \
  320. else \
  321. echo "Tor can use misspell to check for typos."; \
  322. echo "It seems that you don't have misspell installed."; \
  323. echo "You can install the latest version of misspell here: https://github.com/client9/misspell#install"; \
  324. fi
  325. .PHONY: rustfmt
  326. rustfmt:
  327. if USE_RUST
  328. @if test -x "`which cargo-fmt 2>&1;true`"; then \
  329. echo "Formatting Rust code ..."; \
  330. (cd "$(top_srcdir)/src/rust" && cargo fmt --all --); \
  331. else \
  332. echo "Tor uses rustfmt (via cargo-fmt) to format Rust code."; \
  333. echo "However, it seems that you don't have rustfmt installed."; \
  334. printf "You can install rustfmt by following the directions here:"; \
  335. echo " https://github.com/rust-lang-nursery/rustfmt"; \
  336. fi
  337. endif
  338. .PHONY: check-rustfmt
  339. check-rustfmt:
  340. if USE_RUST
  341. @if test -x "`which cargo-fmt 2>&1;true`"; then \
  342. printf "Running rustfmt..."; \
  343. (cd "$(top_srcdir)/src/rust" && cargo fmt --all -- --check && echo "done.") || \
  344. (echo "**************** check-rustfmt failed. ****************"; \
  345. echo " Run \`make rustfmt\` to apply the above changes."; \
  346. exit 1); \
  347. else \
  348. echo "Tor uses rustfmt (via cargo-fmt) to format Rust code."; \
  349. echo "However, it seems that you don't have rustfmt installed."; \
  350. printf "You can install rustfmt by following the directions here:"; \
  351. echo " https://github.com/rust-lang-nursery/rustfmt"; \
  352. fi
  353. endif
  354. .PHONY: clippy
  355. clippy:
  356. if USE_RUST
  357. @if test -x "`which cargo-clippy 2>&1;true`"; then \
  358. echo "Running cargo clippy ..."; \
  359. echo "Prepare yourself for the onslaught of suggestions ..."; \
  360. (cd "$(top_srcdir)/src/rust" && cargo clippy); \
  361. else \
  362. echo "Tor can use clippy to lint Rust code."; \
  363. echo "However, it seems that you don't have clippy installed."; \
  364. echo "You can install the latest version of clippy by following the directions here: https://github.com/rust-lang-nursery/rust-clippy"; \
  365. fi
  366. endif
  367. .PHONY: check-changes
  368. check-changes:
  369. if USEPYTHON
  370. @if test -d "$(top_srcdir)/changes"; then \
  371. $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes; \
  372. fi
  373. endif
  374. .PHONY: update-versions
  375. update-versions:
  376. $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
  377. .PHONY: callgraph
  378. callgraph:
  379. $(top_builddir)/scripts/maint/run_calltool.sh
  380. version:
  381. @echo "Tor @VERSION@"
  382. @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
  383. echo -n "git: " ;\
  384. (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
  385. fi
  386. mostlyclean-local:
  387. rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
  388. rm -rf $(HTML_COVER_DIR)
  389. rm -rf $(top_builddir)/doc/doxygen
  390. rm -rf $(TEST_NETWORK_ALL_LOG_DIR)
  391. clean-local:
  392. rm -rf $(top_builddir)/src/rust/target
  393. rm -rf $(top_builddir)/src/rust/.cargo/registry
  394. if USE_RUST
  395. distclean-local: distclean-rust
  396. endif
  397. # This relies on some internal details of how automake implements
  398. # distcheck. We check two directories because automake-1.15 changed
  399. # from $(distdir)/_build to $(distdir)/_build/sub.
  400. show-distdir-testlog:
  401. @if test -d "$(distdir)/_build/sub"; then \
  402. cat $(distdir)/_build/sub/$(TEST_SUITE_LOG); \
  403. else \
  404. cat $(distdir)/_build/$(TEST_SUITE_LOG); fi
  405. # Similarly, this relies on automake internals to run file on an
  406. # intermittent core file whose provenance is not known to us. See
  407. # ticket 26787.
  408. show-distdir-core:
  409. @if test -d "$(distdir)/_build/sub"; then \
  410. file $(distdir)/_build/sub/core ; \
  411. else \
  412. file $(distdir)/_build/core; fi
  413. show-libs:
  414. @echo $(TOR_INTERNAL_LIBS)
  415. show-testing-libs:
  416. @echo $(TOR_INTERNAL_TESTING_LIBS)
  417. # Note here that we hardcode this -j2 because if the user would pass too many
  418. # cores, bear actually chockes and dies :S. For this to work, a make clean
  419. # needs to be done else bear will miss some compile flags.
  420. lsp:
  421. @if test -x "`which bear 2>&1;true`"; then \
  422. echo "Generating LSP compile_commands.json. Might take few minutes..."; \
  423. $(MAKE) clean 2>&1 >/dev/null; \
  424. bear >/dev/null 2>&1 -- $(MAKE) -j2 2>&1 >/dev/null; \
  425. echo "Generating .ccls file..."; \
  426. ./scripts/maint/gen_ccls_file.sh \
  427. else \
  428. echo "No bear command found. On debian, apt install bear"; \
  429. fi
  430. # Reproducible tarball. We change the tar options for this.
  431. dist-reprod:
  432. $(MAKE) dist am__tar="$${TAR-tar} --format=gnu --owner=root --group=root --sort=name --mtime=\"`git show --no-patch --format='%ci'`\" -chof - $(distdir)"