Makefile.am 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Makefile.am --- GNU Automake file to build Guile-Daemon
  2. # Copyright © 2016–2017 Alex Kost <alezost@gmail.com>
  3. # This file is part of Guile-Daemon.
  4. # Guile-Daemon is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation, either version 3 of the License, or
  7. # (at your option) any later version.
  8. #
  9. # Guile-Daemon is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with Guile-Daemon. If not, see <http://www.gnu.org/licenses/>.
  16. SUBDIRS = modules
  17. EXTRA_DIST = scripts/gdpipe
  18. info_TEXINFOS = doc/guile-daemon.texi
  19. bin_SCRIPTS = \
  20. scripts/guile-daemon \
  21. scripts/gdpipe
  22. clean-go:
  23. @cd modules; make clean-go
  24. .PHONY: clean-go
  25. # Makefile.am ends here