Makefile.am 19 KB

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