Make some fascist_firewall_choose_address* functions static
[tor.git] / Makefile.am
blob1333f368ad9735eeac4147f18e3e183fba68f4dd
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@
25 if COVERAGE_ENABLED
26 TESTING_TOR_BINARY="$(top_builddir)/src/or/tor-cov"
27 else
28 TESTING_TOR_BINARY="$(top_builddir)/src/or/tor"
29 endif
31 include src/include.am
32 include doc/include.am
33 include contrib/include.am
35 EXTRA_DIST+= \
36         ChangeLog                                       \
37         INSTALL                                         \
38         LICENSE                                         \
39         Makefile.nmake                                  \
40         README                                          \
41         ReleaseNotes
43 if COVERAGE_ENABLED
44 TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
45 if DISABLE_ASSERTS_IN_UNIT_TESTS
46 TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE -DDISABLE_ASSERTS_IN_UNIT_TESTS
47 else
48 TEST_CPPFLAGS=-DTOR_UNIT_TESTS -DTOR_COVERAGE
49 endif
50 TEST_NETWORK_FLAGS=--coverage --hs-multi-client 1
51 else
52 TEST_CFLAGS=
53 TEST_CPPFLAGS=-DTOR_UNIT_TESTS
54 TEST_NETWORK_FLAGS=--hs-multi-client 1
55 endif
57 TEST_NETWORK_ALL_LOG_DIR=$(top_builddir)/test_network_log
58 TEST_NETWORK_ALL_DRIVER_FLAGS=--color-tests yes
60 #install-data-local:
61 #       $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
63 # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
64 # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
65 RPMBUILD ?= rpmbuild
67 # Use automake's dist-gzip target to build the tarball
68 dist-rpm: dist-gzip
69         TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S");                                \
70         RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX");      \
71         mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
72         cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/;                  \
73         LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec;  \
74         cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .;                                     \
75         cp -fa "$$RPM_BUILD_DIR"/RPMS/* .;                                      \
76         rm -rf "$$RPM_BUILD_DIR";                                               \
77         echo "RPM build finished";                                              \
78         #end of dist-rpm
80 doxygen:
81         doxygen && cd doc/doxygen/latex && make
83 test: all
84         $(top_builddir)/src/test/test
86 need-chutney-path:
87         @if test ! -d "$$CHUTNEY_PATH"; then \
88                 echo '$$CHUTNEY_PATH was not set.'; \
89                 if test -d $(top_srcdir)/../chutney -a -x $(top_srcdir)/../chutney/chutney; then \
90                         echo "Assuming test-network.sh will find" $(top_srcdir)/../chutney; \
91                 else \
92                         echo; \
93                         echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
94                         exit 1; \
95                 fi \
96         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 all
101         $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
103 # Run all available tests using automake's test-driver
104 # only run IPv6 tests if we can ping6 ::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 # see #17015 for autodetection of different tor versions
108 test-network-all: need-chutney-path all test-driver
109         mkdir -p $(TEST_NETWORK_ALL_LOG_DIR)
110         @flavors="$(TEST_CHUTNEY_FLAVORS)"; \
111         if ping6 -q -o ::1 >/dev/null 2>&1; then \
112                 echo "ping6 ::1 succeeded, running IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
113                 flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
114         else \
115                 echo "ping6 ::1 failed, skipping IPv6 flavors: $(TEST_CHUTNEY_FLAVORS_IPV6)."; \
116                 skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_IPV6)"; \
117         fi; \
118         if command -v tor-stable >/dev/null 2>&1; then \
119                 echo "tor-stable found, running mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
120                 flavors="$$flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
121         else \
122                 echo "tor-stable not found, skipping mixed flavors: $(TEST_CHUTNEY_FLAVORS_MIXED)."; \
123                 skip_flavors="$$skip_flavors $(TEST_CHUTNEY_FLAVORS_MIXED)"; \
124         fi; \
125         for f in $$skip_flavors; do \
126                 echo "SKIP: $$f"; \
127         done; \
128         for f in $$flavors; do \
129                 ./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); \
130         done; \
131         echo "Log and result files are available in $(TEST_NETWORK_ALL_LOG_DIR)."; \
132         ! grep -q FAIL test_network_log/*.trs
134 need-stem-path:
135         @if test ! -d "$$STEM_SOURCE_DIR"; then \
136                 echo '$$STEM_SOURCE_DIR was not set.'; echo; \
137                 echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
138                 exit 1; \
139         fi
141 test-stem: need-stem-path $(TESTING_TOR_BINARY)
142         @$(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;
147 test-full: need-stem-path need-chutney-path check test-network test-stem
149 test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
151 reset-gcov:
152         rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda
154 HTML_COVER_DIR=$(top_builddir)/coverage_html
155 coverage-html: all
156 if COVERAGE_ENABLED
157         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
158         test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
159         lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
160         $(MAKE) reset-gcov
161         $(MAKE) check
162         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
163         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
164         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
165 else
166         @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
167 endif
169 coverage-html-full: all
170         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
171         test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
172         lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
173         $(MAKE) reset-gcov
174         $(MAKE) check
175         $(MAKE) test-stem-full
176         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
177         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
178         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --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"
182 # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
183 # eventdns.[hc], tinytest*.[ch]
184 check-spaces:
185         $(top_srcdir)/scripts/maint/checkSpace.pl -C \
186                 $(top_srcdir)/src/common/*.[ch] \
187                 $(top_srcdir)/src/or/*.[ch] \
188                 $(top_srcdir)/src/test/*.[ch] \
189                 $(top_srcdir)/src/tools/*.[ch]
191 check-docs: all
192         $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
194 check-logs:
195         $(top_srcdir)/scripts/maint/checkLogs.pl \
196                 $(top_srcdir)/src/*/*.[ch] | sort -n
198 .PHONY: check-changes
199 check-changes:
200         @if test -d "$(top_srcdir)/changes"; then \
201                 $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes/*; \
202                 fi
204 .PHONY: update-versions
205 update-versions:
206         $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
208 version:
209         @echo "Tor @VERSION@"
210         @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
211            echo -n "git: " ;\
212            (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
213         fi
215 mostlyclean-local:
216         rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
217         rm -rf $(HTML_COVER_DIR)
218         rm -rf $(top_builddir)/doc/doxygen
219         rm -rf $(TEST_NETWORK_ALL_LOG_DIR)