Use SSL_get_client_ciphers() on openssl 1.1+, not SSL_get_ciphers...
[tor.git] / Makefile.am
blobc226113cc8725035215bfd018fea42c3a742d7b6
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
6 # "foreign" means we don't follow GNU package layout standards
7 # 1.9 means we require automake vesion 1.9
8 AUTOMAKE_OPTIONS = foreign 1.9 subdir-objects
10 ACLOCAL_AMFLAGS = -I m4
12 noinst_LIBRARIES=
13 EXTRA_DIST=
14 noinst_HEADERS=
15 bin_PROGRAMS=
16 CLEANFILES=
17 TESTS=
18 noinst_PROGRAMS=
19 DISTCLEANFILES=
20 bin_SCRIPTS=
21 AM_CPPFLAGS=
22 AM_CFLAGS = @TOR_SYSTEMD_CFLAGS@
23 SHELL = @SHELL@
24 include src/include.am
25 include doc/include.am
26 include contrib/include.am
28 EXTRA_DIST+= \
29         ChangeLog                                       \
30         INSTALL                                         \
31         LICENSE                                         \
32         Makefile.nmake                                  \
33         README                                          \
34         ReleaseNotes
36 if COVERAGE_ENABLED
37 TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
38 TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE
39 TEST_NETWORK_FLAGS=--coverage --hs-multi-client 1
40 else
41 TEST_CFLAGS=
42 TEST_CPPFLAGS=-DTOR_UNIT_TESTS
43 TEST_NETWORK_FLAGS=--hs-multi-client 1
44 endif
46 TEST_NETWORK_ALL_LOG_DIR=$(top_builddir)/test_network_log
47 TEST_NETWORK_ALL_DRIVER_FLAGS=--color-tests yes
49 #install-data-local:
50 #       $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
52 # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
53 # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
54 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
69 dist: check
71 doxygen:
72         doxygen && cd doc/doxygen/latex && make
74 test: all
75         $(top_builddir)/src/test/test
77 need-chutney-path:
78         @if test ! -d "$$CHUTNEY_PATH"; then \
79                 echo '$$CHUTNEY_PATH was not set.'; \
80                 if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \
81                         echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \
82                 else \
83                         echo; \
84                         echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
85                         exit 1; \
86                 fi \
87         fi
89 # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
90 # Chutney can be cloned from https://git.torproject.org/chutney.git .
91 test-network: need-chutney-path all
92         $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
94 # Run all available tests using automake's test-driver
95 # only run IPv6 tests if we can ping6 ::1 (localhost)
96 # some IPv6 tests will fail without an IPv6 DNS server (see #16971 and #17011)
97 # only run mixed tests if we have a tor-stable binary
98 # see #17015 for autodetection of different tor versions
99 test-network-all: need-chutney-path all test-driver
100         mkdir -p $(TEST_NETWORK_ALL_LOG_DIR)
101         @flavors="$(TEST_CHUTNEY_FLAVORS)"; \
102         if ping6 -q -o ::1 >/dev/null 2>&1; then \
103                 echo "ping6 ::1 succeeded, running IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
104                 flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
105         else \
106                 echo "ping6 ::1 failed, skipping IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
107                 skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
108         fi; \
109         if command -v tor-stable >/dev/null 2>&1; then \
110                 echo "tor-stable found, running mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
111                 flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
112         else \
113                 echo "tor-stable not found, skipping mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
114                 skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
115         fi; \
116         for f in $$skip_flavors; do \
117                 echo "SKIP: $$f"; \
118         done; \
119         for f in $$flavors; do \
120                 ./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); \
121         done; \
122         echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \
123         ! grep -q FAIL test_network_log/*.trs
125 need-stem-path:
126         @if test ! -d "$$STEM_SOURCE_DIR"; then \
127                 echo '$$STEM_SOURCE_DIR was not set.'; echo; \
128                 echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
129                 exit 1; \
130         fi
132 test-stem: need-stem-path $(TESTING_TOR_BINARY)
133         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL;
135 test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
136         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL,ONLINE -v;
138 test-full: need-stem-path need-chutney-path check test-network test-stem
140 test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
142 reset-gcov:
143         rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda
145 HTML_COVER_DIR=$(top_builddir)/coverage_html
146 coverage-html: all
147 if COVERAGE_ENABLED
148         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
149         test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
150         lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
151         $(MAKE) reset-gcov
152         $(MAKE) check
153         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
154         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
155         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
156 else
157         @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
158 endif
160 coverage-html-full: all
161         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
162         test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
163         lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
164         $(MAKE) reset-gcov
165         $(MAKE) check
166         $(MAKE) test-stem-full
167         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
168         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
169         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
170         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
171         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
173 # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
174 # eventdns.[hc], tinytest*.[ch]
175 check-spaces:
176         $(top_srcdir)/scripts/maint/checkSpace.pl -C \
177                 $(top_srcdir)/src/common/*.[ch] \
178                 $(top_srcdir)/src/or/*.[ch] \
179                 $(top_srcdir)/src/test/*.[ch] \
180                 $(top_srcdir)/src/tools/*.[ch]
182 check-docs: all
183         $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
185 check-logs:
186         $(top_srcdir)/scripts/maint/checkLogs.pl \
187                 $(top_srcdir)/src/*/*.[ch] | sort -n
189 .PHONY: check-changes
190 check-changes:
191         @if test -d "$(top_srcdir)/changes"; then \
192                 $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes/*; \
193                 fi
195 .PHONY: update-versions
196 update-versions:
197         $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
199 version:
200         @echo "Tor @VERSION@"
201         @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
202            echo -n "git: " ;\
203            (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
204         fi
206 mostlyclean-local:
207         rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
208         rm -rf $(HTML_COVER_DIR)
209         rm -rf $(top_builddir)/doc/doxygen
210         rm -rf $(TEST_NETWORK_ALL_LOG_DIR)