Makefile.am 908 B

1234567891011121314151617181920212223242526272829
  1. ## Copyright (C) 2015 Artyom V. Poptsov <poptsov.artyom@gmail.com>
  2. ##
  3. ## This file is part of Guile-SSH.
  4. ##
  5. ## Guile-SSH is free software: you can redistribute it and/or
  6. ## modify it under the terms of the GNU General Public License as
  7. ## published by the Free Software Foundation, either version 3 of the
  8. ## License, or (at your option) any later version.
  9. ##
  10. ## Guile-SSH is distributed in the hope that it will be useful, but
  11. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. ## General Public License for more details.
  14. ##
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
  17. SUBDIRS = ssh srfi
  18. EXTRA_DIST = \
  19. srfi/srfi-64.scm \
  20. srfi/srfi-64.upstream.scm
  21. clean-go:
  22. @cd ssh; make clean-go
  23. .PHONY: clean-go
  24. ## Makefile.am ends here.