Makefile.am 8.4 KB

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