Makefile.am 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. # Copyright (c) 2001-2004, Roger Dingledine
  2. # Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson
  3. # Copyright (c) 2007-2011, The Tor Project, Inc.
  4. # See LICENSE for licensing information
  5. # "foreign" means we don't follow GNU package layout standards
  6. # 1.9 means we require automake vesion 1.9
  7. AUTOMAKE_OPTIONS = foreign 1.9 subdir-objects
  8. ACLOCAL_AMFLAGS = -I m4
  9. noinst_LIBRARIES=
  10. EXTRA_DIST=
  11. noinst_HEADERS=
  12. bin_PROGRAMS=
  13. CLEANFILES=
  14. TESTS=
  15. noinst_PROGRAMS=
  16. DISTCLEANFILES=
  17. bin_SCRIPTS=
  18. AM_CPPFLAGS=
  19. include src/include.am
  20. include doc/include.am
  21. include contrib/include.am
  22. EXTRA_DIST+= \
  23. ChangeLog \
  24. INSTALL \
  25. LICENSE \
  26. Makefile.nmake \
  27. README \
  28. ReleaseNotes
  29. if COVERAGE_ENABLED
  30. TEST_CFLAGS=-fno-inline -fprofile-arcs -ftest-coverage
  31. else
  32. TEST_CFLAGS=
  33. endif
  34. #install-data-local:
  35. # $(INSTALL) -m 755 -d $(LOCALSTATEDIR)/lib/tor
  36. # Allows to override rpmbuild with rpmbuild-md5 from fedora-packager so that
  37. # building for EL5 won't fail on https://bugzilla.redhat.com/show_bug.cgi?id=490613
  38. RPMBUILD ?= rpmbuild
  39. # Use automake's dist-gzip target to build the tarball
  40. dist-rpm: dist-gzip
  41. TIMESTAMP=$$(date +"%Y-%m-%d_%H.%M.%S"); \
  42. RPM_BUILD_DIR=$$(mktemp -d "/tmp/tor-rpm-build-$$TIMESTAMP-XXXX"); \
  43. mkdir -p "$$RPM_BUILD_DIR"/{BUILD,RPMS,SOURCES/"tor-$(VERSION)",SPECS,SRPMS}; \
  44. cp -fa "$(distdir).tar.gz" "$$RPM_BUILD_DIR"/SOURCES/; \
  45. LIBS=-lrt $(RPMBUILD) -ba --define "_topdir $$RPM_BUILD_DIR" tor.spec; \
  46. cp -fa "$$RPM_BUILD_DIR"/SRPMS/* .; \
  47. cp -fa "$$RPM_BUILD_DIR"/RPMS/* .; \
  48. rm -rf "$$RPM_BUILD_DIR"; \
  49. echo "RPM build finished"; \
  50. #end of dist-rpm
  51. dist: check
  52. doxygen:
  53. doxygen && cd doc/doxygen/latex && make
  54. test: all
  55. ./src/test/test
  56. # Note that test-network requires a copy of Chutney in $CHUTNEY_PATH.
  57. # Chutney can be cloned from https://git.torproject.org/chutney.git .
  58. test-network: all
  59. ./src/test/test-network.sh
  60. reset-gcov:
  61. rm -f src/*/*.gcda
  62. # Avoid strlcpy.c, strlcat.c, aes.c, OpenBSD_malloc_Linux.c, sha256.c,
  63. # eventdns.[hc], tinytest*.[ch]
  64. check-spaces:
  65. ./scripts/maint/checkSpace.pl -C \
  66. src/common/*.[ch] \
  67. src/or/*.[ch] \
  68. src/test/*.[ch] \
  69. src/tools/*.[ch] \
  70. src/tools/tor-fw-helper/*.[ch]
  71. check-docs:
  72. ./scripts/maint/checkOptionDocs.pl
  73. check-logs:
  74. ./scripts/maint/checkLogs.pl \
  75. src/*/*.[ch] | sort -n
  76. version:
  77. @echo "Tor @VERSION@"
  78. @if test -d "$(top_srcdir)/.git" && test -x "`which git 2>&1;true`"; then \
  79. echo -n "git: " ;\
  80. (cd "$(top_srcdir)" && git rev-parse --short=16 HEAD); \
  81. fi
  82. mostlyclean-local:
  83. rm -f src/*/*.gc{da,no}