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