Makefile.am 16 KB

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