Makefile.am 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ## Config file for GNU Automake.
  2. ##
  3. ## Copyright (C) 2013, 2014, 2015, 2016 Artyom V. Poptsov <poptsov.artyom@gmail.com>
  4. ##
  5. ## This file is part of Guile-SSH.
  6. ##
  7. ## Guile-SSH is free software: you can redistribute it and/or
  8. ## modify it under the terms of the GNU General Public License as
  9. ## published by the Free Software Foundation, either version 3 of the
  10. ## License, or (at your option) any later version.
  11. ##
  12. ## Guile-SSH is distributed in the hope that it will be useful, but
  13. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. ## General Public License for more details.
  16. ##
  17. ## You should have received a copy of the GNU General Public License
  18. ## along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
  19. ACLOCAL_AMFLAGS = -I m4 --install
  20. SUBDIRS = am libguile-ssh examples build-aux m4 doc modules tests
  21. EXTRA_DIST = \
  22. build-aux/config.rpath \
  23. build-aux/compile \
  24. .dir-locals.el \
  25. TODO
  26. gen-ChangeLog:
  27. if test -d .git; then \
  28. $(top_srcdir)/build-aux/gitlog-to-changelog \
  29. 194fd7d..HEAD > $(distdir)/cl-t; \
  30. rm -f $(distdir)/ChangeLog; \
  31. mv $(distdir)/cl-t $(distdir)/ChangeLog; \
  32. fi
  33. dist-hook: gen-ChangeLog
  34. .PHONY: gen-ChangeLog
  35. clean-go:
  36. @cd modules; make clean-go
  37. .PHONY: clean-go
  38. ## Makefile.am ends here