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