Include doc/TUNING in our release tarballs
[tor.git] / Makefile.am
blob9b68d2752b960887da3f6a3cd475111d149a97d0
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"
40 else
41 TEST_CFLAGS=
42 TEST_CPPFLAGS=-DTOR_UNIT_TESTS
43 TEST_NETWORK_FLAGS=
44 endif
46 #install-data-local:
47 #       $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
49 # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
50 # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
51 RPMBUILD ?= rpmbuild
53 # Use automake's dist-gzip target to build the tarball
54 dist-rpm: dist-gzip
55         TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S");                                \
56         RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX");      \
57         mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
58         cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/;                  \
59         LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec;  \
60         cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .;                                     \
61         cp -fa "$$RPM_BUILD_DIR"/RPMS/* .;                                      \
62         rm -rf "$$RPM_BUILD_DIR";                                               \
63         echo "RPM build finished";                                              \
64         #end of dist-rpm
66 dist: check
68 doxygen:
69         doxygen && cd doc/doxygen/latex && make
71 test: all
72         $(top_builddir)/src/test/test
74 need-chutney-path:
75         @if test ! -d "$$CHUTNEY_PATH"; then \
76                 echo '$$CHUTNEY_PATH was not set.'; echo; \
77                 echo "To run these tests, git clone https://git.torproject.org/chutney.git ; export CHUTNEY_PATH=\`pwd\`/chutney"; \
78                 exit 1; \
79         fi
81 # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
82 # Chutney can be cloned from https://git.torproject.org/chutney.git .
83 test-network: need-chutney-path all
84         $(top_srcdir)/src/test/test-network.sh $(TEST_NETWORK_FLAGS)
86 need-stem-path:
87         @if test ! -d "$$STEM_SOURCE_DIR"; then \
88                 echo '$$STEM_SOURCE_DIR was not set.'; echo; \
89                 echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \
90                 exit 1; \
91         fi
93 test-stem: need-stem-path $(TESTING_TOR_BINARY)
94         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL;
96 test-stem-full: need-stem-path $(TESTING_TOR_BINARY)
97         @$(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL,ONLINE -v;
99 test-full: need-stem-path need-chutney-path check test-network test-stem
101 test-full-online: need-stem-path need-chutney-path check test-network test-stem-full
103 reset-gcov:
104         rm -f $(top_builddir)/src/*/*.gcda $(top_builddir)/src/*/*/*.gcda
106 HTML_COVER_DIR=$(top_builddir)/coverage_html
107 coverage-html: all
108 if COVERAGE_ENABLED
109         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
110         test -d "$(HTML_COVER_DIR)" || $(MKDIR_P) "$(HTML_COVER_DIR)"
111         lcov --rc lcov_branch_coverage=1 --directory $(top_builddir)/src --zerocounters
112         $(MAKE) reset-gcov
113         $(MAKE) check
114         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory $(top_builddir) --base-directory $(top_srcdir) --output-file "$(HTML_COVER_DIR)/lcov.tmp"
115         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
116         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
117 else
118         @printf "Not configured with --enable-coverage, run ./configure --enable-coverage\n"
119 endif
121 coverage-html-full: all
122         test -e "`which lcov`" || (echo "lcov must be installed. See <http://ltp.sourceforge.net/coverage/lcov.php>." && false)
123         test -d "$(HTML_COVER_DIR)" || mkdir -p "$(HTML_COVER_DIR)"
124         lcov --rc lcov_branch_coverage=1 --directory ./src --zerocounters
125         $(MAKE) reset-gcov
126         $(MAKE) check
127         $(MAKE) test-stem-full
128         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh
129         CHUTNEY_TOR=tor-cov CHUTNEY_TOR_GENCERT=tor-cov-gencert $(top_srcdir)/src/test/test-network.sh --flavor hs
130         lcov --capture --rc lcov_branch_coverage=1 --no-external --directory . --output-file "$(HTML_COVER_DIR)/lcov.tmp"
131         lcov --remove "$(HTML_COVER_DIR)/lcov.tmp" --rc lcov_branch_coverage=1 'test/*' 'ext/tinytest*' '/usr/*' --output-file "$(HTML_COVER_DIR)/lcov.info"
132         genhtml --branch-coverage -o "$(HTML_COVER_DIR)" "$(HTML_COVER_DIR)/lcov.info"
134 # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
135 # eventdns.[hc], tinytest*.[ch]
136 check-spaces:
137         $(top_srcdir)/scripts/maint/checkSpace.pl -C \
138                 $(top_srcdir)/src/common/*.[ch] \
139                 $(top_srcdir)/src/or/*.[ch] \
140                 $(top_srcdir)/src/test/*.[ch] \
141                 $(top_srcdir)/src/tools/*.[ch]
143 check-docs: all
144         $(PERL) $(top_builddir)/scripts/maint/checkOptionDocs.pl
146 check-logs:
147         $(top_srcdir)/scripts/maint/checkLogs.pl \
148                 $(top_srcdir)/src/*/*.[ch] | sort -n
150 .PHONY: check-changes
151 check-changes:
152         @if test -d "$(top_srcdir)/changes"; then \
153                 $(PYTHON) $(top_srcdir)/scripts/maint/lintChanges.py $(top_srcdir)/changes/*; \
154                 fi
156 .PHONY: update-versions
157 update-versions:
158         $(PERL) $(top_builddir)/scripts/maint/updateVersions.pl
160 version:
161         @echo "Tor @VERSION@"
162         @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
163            echo -n "git: " ;\
164            (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
165         fi
167 mostlyclean-local:
168         rm -f $(top_builddir)/src/*/*.gc{da,no} $(top_builddir)/src/*/*/*.gc{da,no}
169         rm -rf $(HTML_COVER_DIR)
170         rm -rf $(top_builddir)/doc/doxygen