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