Makefile.am 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. # Copyright (c) 2001-2004, Roger Dingledine
  2. # Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  3. # Copyright (c) 2007-2018, 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/or/tor-cov$(EXEEXT)
  25. else
  26. TESTING_TOR_BINARY=$(top_builddir)/src/or/tor$(EXEEXT)
  27. endif
  28. if USE_RUST
  29. rust_ldadd=$(top_builddir)/src/rust/target/release/@TOR_RUST_STATIC_NAME@ \
  30. @TOR_RUST_EXTRA_LIBS@
  31. else
  32. rust_ldadd=
  33. endif
  34. include src/include.am
  35. include doc/include.am
  36. include contrib/include.am
  37. EXTRA_DIST+= \
  38. ChangeLog \
  39. CONTRIBUTING \
  40. INSTALL \
  41. LICENSE \
  42. Makefile.nmake \
  43. README \
  44. ReleaseNotes \
  45. scripts/maint/checkSpace.pl
  46. ## This tells etags how to find mockable function definitions.
  47. AM_ETAGSFLAGS=--regex='{c}/MOCK_IMPL([^,]+,\W*\([a-zA-Z0-9_]+\)\W*,/\1/s'
  48. if COVERAGE_ENABLED
  49. TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
  50. if DISABLE_ASSERTS_IN_UNIT_TESTS
  51. TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE -DDISABLE_ASSERTS_IN_UNIT_TESTS @TOR_MODULES_ALL_ENABLED@
  52. else
  53. TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE @TOR_MODULES_ALL_ENABLED@
  54. endif
  55. TEST_NETWORK_FLAGS=--coverage --hs-multi-client 1
  56. else
  57. TEST_CFLAGS=
  58. TEST_CPPFLAGS=-DTOR_UNIT_TESTS @TOR_MODULES_ALL_ENABLED@
  59. TEST_NETWORK_FLAGS=--hs-multi-client 1
  60. endif
  61. TEST_NETWORK_WARNING_FLAGS=--quiet --only-warnings
  62. if LIBFUZZER_ENABLED
  63. TEST_CFLAGS += -fsanitize-coverage=trace-pc-guard,trace-cmp,trace-div
  64. # not "edge"
  65. endif
  66. TEST_NETWORK_ALL_LOG_DIR=$(top_builddir)/test_network_log
  67. TEST_NETWORK_ALL_DRIVER_FLAGS=--color-tests yes
  68. #install-data-local:
  69. # $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
  70. # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
  71. # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
  72. RPMBUILD ?= rpmbuild
  73. # Use automake's dist-gzip target to build the tarball
  74. dist-rpm: dist-gzip
  75. TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S"); \
  76. RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX"); \
  77. mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
  78. cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/; \
  79. LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec; \
  80. cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .; \
  81. cp -fa "$$RPM_BUILD_DIR"/RPMS/* .; \
  82. rm -rf "$$RPM_BUILD_DIR"; \
  83. echo "RPM build finished"; \
  84. #end of dist-rpm
  85. doxygen:
  86. doxygen && cd doc/doxygen/latex && make
  87. test: all
  88. $(top_builddir)/src/test/test
  89. check-local: check-spaces check-changes
  90. need-chutney-path:
  91. @if test ! -d "$$CHUTNEY_PATH"; then \
  92. echo '$$CHUTNEY_PATH was not set.'; \
  93. if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \
  94. echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \
  95. else \
  96. echo; \
  97. echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
  98. exit 1; \
  99. fi \
  100. fi
  101. # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
  102. # Chutney can be cloned from https://git.torproject.org/chutney.git .
  103. test-network: need-chutney-path $(TESTING_TOR_BINARY) src/tools/tor-gencert
  104. $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
  105. # Run all available tests using automake's test-driver
  106. # only run IPv6 tests if we can ping6 ::1 (localhost)
  107. # only run IPv6 tests if we can ping ::1 (localhost)
  108. # some IPv6 tests will fail without an IPv6 DNS server (see #16971 and #17011)
  109. # only run mixed tests if we have a tor-stable binary
  110. # Try the syntax for BSD ping6, Linux ping6, and Linux ping -6,
  111. # because they're incompatible
  112. test-network-all: need-chutney-path test-driver $(TESTING_TOR_BINARY) src/tools/tor-gencert
  113. mkdir -p $(TEST_NETWORK_ALL_LOG_DIR)
  114. @flavors="$(TEST_CHUTNEY_FLAVORS)"; \
  115. 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 \
  116. echo "ping6 ::1 or ping ::1 succeeded, running IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
  117. flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
  118. else \
  119. echo "ping6 ::1 and ping ::1 failed, skipping IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
  120. skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
  121. fi; \
  122. if command -v tor-stable >/dev/null 2>&1; then \
  123. echo "tor-stable found, running mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
  124. flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
  125. else \
  126. echo "tor-stable not found, skipping mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
  127. skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
  128. fi; \
  129. for f in $$skip_flavors; do \
  130. echo "SKIP: $$f"; \
  131. done; \
  132. for f in $$flavors; do \
  133. $(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); \
  134. $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_WARNING_FLAGS); \
  135. done; \
  136. echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \
  137. ! grep -q FAIL test_network_log/*.trs
  138. need-stem-path:
  139. @if test ! -d "$$STEM_SOURCE_DIR"; then \
  140. echo '$$STEM_SOURCE_DIR was not set.'; echo; \
  141. echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
  142. exit 1; \
  143. fi
  144. test-stem: need-stem-path $(TESTING_TOR_BINARY)
  145. @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL;
  146. test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
  147. @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor "$(TESTING_TOR_BINARY)" --all --log notice --target RUN_ALL,ONLINE -v;
  148. test-full: need-stem-path need-chutney-path check test-network test-stem
  149. test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
  150. reset-gcov:
  151. rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda
  152. HTML_COVER_DIR=$(top_builddir)/coverage_html
  153. coverage-html: all
  154. if COVERAGE_ENABLED
  155. test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
  156. test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
  157. lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
  158. $(MAKE) reset-gcov
  159. $(MAKE) check
  160. lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
  161. lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
  162. genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
  163. else
  164. @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
  165. endif
  166. coverage-html-full: all
  167. test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
  168. test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
  169. lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
  170. $(MAKE) reset-gcov
  171. $(MAKE) check
  172. $(MAKE) test-stem-full
  173. CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
  174. CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
  175. lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
  176. lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
  177. genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
  178. # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
  179. # tinytest*.[ch]
  180. check-spaces:
  181. if USE_PERL
  182. $(PERL) $(top_srcdir)/scripts/maint/checkSpace.pl -C \
  183. $(top_srcdir)/src/common/*.[ch] \
  184. $(top_srcdir)/src/or/*.[ch] \
  185. $(top_srcdir)/src/test/*.[ch] \
  186. $(top_srcdir)/src/test/*/*.[ch] \
  187. $(top_srcdir)/src/tools/*.[ch]
  188. endif
  189. check-docs: all
  190. $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
  191. check-logs:
  192. $(top_srcdir)/scripts/maint/checkLogs.pl \
  193. $(top_srcdir)/src/*/*.[ch] | sort -n
  194. .PHONY: check-typos
  195. check-typos:
  196. @if test -x "`which misspell 2>&1;true`"; then \
  197. echo "Checking for Typos ..."; \
  198. (misspell \
  199. $(top_srcdir)/src/[^e]*/*.[ch] \
  200. $(top_srcdir)/doc \
  201. $(top_srcdir)/contrib \
  202. $(top_srcdir)/scripts \
  203. $(top_srcdir)/README \
  204. $(top_srcdir)/ChangeLog \
  205. $(top_srcdir)/INSTALL \
  206. $(top_srcdir)/ReleaseNotes \
  207. $(top_srcdir)/LICENSE); \
  208. else \
  209. echo "Tor can use misspell to check for typos."; \
  210. echo "It seems that you don't have misspell installed."; \
  211. echo "You can install the latest version of misspell here: https://github.com/client9/misspell#install"; \
  212. fi
  213. .PHONY: clippy
  214. clippy:
  215. if USE_RUST
  216. @if test -x "`which cargo-clippy 2>&1;true`"; then \
  217. echo "Running cargo clippy ..."; \
  218. echo "Prepare yourself for the onslaught of suggestions ..."; \
  219. (cd "$(top_srcdir)/src/rust" && cargo clippy); \
  220. else \
  221. echo "Tor can use clippy to lint Rust code."; \
  222. echo "However, it seems that you don't have clippy installed."; \
  223. echo "You can install the latest version of clippy by following the directions here: https://github.com/rust-lang-nursery/rust-clippy"; \
  224. fi
  225. endif
  226. .PHONY: check-changes
  227. check-changes:
  228. if USEPYTHON
  229. @if test -d "$(top_srcdir)/changes"; then \
  230. $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes; \
  231. fi
  232. endif
  233. .PHONY: update-versions
  234. update-versions:
  235. $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
  236. .PHONY: callgraph
  237. callgraph:
  238. $(top_builddir)/scripts/maint/run_calltool.sh
  239. version:
  240. @echo "Tor @VERSION@"
  241. @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
  242. echo -n "git: " ;\
  243. (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
  244. fi
  245. mostlyclean-local:
  246. rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
  247. rm -rf $(HTML_COVER_DIR)
  248. rm -rf $(top_builddir)/doc/doxygen
  249. rm -rf $(TEST_NETWORK_ALL_LOG_DIR)
  250. clean-local:
  251. rm -rf $(top_builddir)/src/rust/target
  252. rm -rf $(top_builddir)/src/rust/.cargo/registry
  253. if USE_RUST
  254. distclean-local: distclean-rust
  255. endif
  256. # This relies on some internal details of how automake implements
  257. # distcheck. We check two directories because automake-1.15 changed
  258. # from $(distdir)/_build to $(distdir)/_build/sub.
  259. show-distdir-testlog:
  260. @if test -d "$(distdir)/_build/sub"; then \
  261. cat $(distdir)/_build/sub/$(TEST_SUITE_LOG); \
  262. else \
  263. cat $(distdir)/_build/$(TEST_SUITE_LOG); fi