Makefile.am 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # Makefile.am --- GNU Automake file to build Emacs-Guix
  2. # Copyright © 2016–2017 Alex Kost <alezost@gmail.com>
  3. # This file is part of Emacs-Guix.
  4. # Emacs-Guix 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. # Emacs-Guix 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 Emacs-Guix. If not, see <http://www.gnu.org/licenses/>.
  16. CLEANFILES =
  17. EXTRA_DIST = build-aux/build-env.el
  18. info_TEXINFOS = doc/emacs-guix.texi
  19. imagedir = $(pkgdatadir)/images
  20. dist_image_DATA = images/*.svg
  21. include elisp/local.mk
  22. SUBDIRS = scheme
  23. clean-go:
  24. @cd scheme; make clean-go
  25. .PHONY: clean-go
  26. # Makefile.am ends here