Makefile.am 10 KB

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