Makefile.am 10 KB

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