guile.am 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # Disarchive
  2. # Copyright © 2019 Timothy Sample <samplet@ngyro.com>
  3. #
  4. # This file was adapted from the 'am/guilec' file shipped with GNU
  5. # Guile version 2.2.4. Unfortunately that file does not contain a
  6. # copyright notice. Looking at Guile's Git commit history, it looks
  7. # like the notice should read:
  8. #
  9. # Copyright 2008-2012, 2016 Free Software Foundation, Inc.
  10. #
  11. # This file is part of Disarchive.
  12. #
  13. # Disarchive is free software: you can redistribute it and/or modify
  14. # it under the terms of the GNU General Public License as published by
  15. # the Free Software Foundation, either version 3 of the License, or
  16. # (at your option) any later version.
  17. #
  18. # Disarchive is distributed in the hope that it will be useful,
  19. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. # GNU General Public License for more details.
  22. #
  23. # You should have received a copy of the GNU General Public License
  24. # along with Disarchive. If not, see <https://www.gnu.org/licenses/>.
  25. GOBJECTS = $(SOURCES:%.scm=%.go)
  26. GUILE_WARNINGS = \
  27. -Wunbound-variable \
  28. -Wmacro-use-before-definition \
  29. -Warity-mismatch \
  30. -Wformat
  31. moddir = $(datadir)/guile/site/$(GUILE_EFFECTIVE_VERSION)/$(modpath)
  32. nobase_mod_DATA = $(SOURCES) $(NOCOMP_SOURCES)
  33. ccachedir = $(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache/$(modpath)
  34. nobase_ccache_DATA = $(GOBJECTS)
  35. EXTRA_DIST = $(SOURCES) $(NOCOMP_SOURCES)
  36. CLEANFILES = $(GOBJECTS)
  37. # Make sure source files are installed first, so that the mtime of
  38. # installed compiled files is greater than that of installed source
  39. # files. See
  40. # <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
  41. # for details.
  42. guile_install_go_files = install-nobase_ccacheDATA
  43. $(guile_install_go_files): install-nobase_modDATA
  44. AM_V_GUILEC = $(AM_V_GUILEC_@AM_V@)
  45. AM_V_GUILEC_ = $(AM_V_GUILEC_@AM_DEFAULT_V@)
  46. AM_V_GUILEC_0 = @echo " GUILEC" $@;
  47. SUFFIXES = .scm .go
  48. .scm.go:
  49. $(AM_V_GUILEC)GUILE_AUTO_COMPILE=0 \
  50. $(top_builddir)/pre-inst-env \
  51. $(GUILD) compile $(GUILE_WARNINGS) $(GUILD_TARGET_OPTION) \
  52. -o "$@" "$<"