Makefile.am 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Makefile.am --- GNU Automake file to build Guile-XOSD
  2. # Copyright (C) 2016 Alex Kost <alezost@gmail.com>
  3. # This file is part of Guile-XOSD.
  4. # Guile-XOSD 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-XOSD 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-XOSD. If not, see <http://www.gnu.org/licenses/>.
  16. # Keep "modules" after "src" because Guile modules should be compiled
  17. # after "libguile-xosd".
  18. SUBDIRS = doc src modules
  19. EXTRA_DIST = build-aux/texi-to-docstrings.scm
  20. examplesdir = $(pkgdatadir)/examples
  21. nodist_examples_SCRIPTS = examples/*.scm
  22. clean-go:
  23. @cd modules; make clean-go
  24. .PHONY: clean-go
  25. # Makefile.am ends here