Makefile.am 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. ## Copyright (C) 2015, 2017 Christopher Allan Webber <cwebber@dustycloud.org>
  2. ## parts of this automake recipe borrowed from:
  3. ## GNU Guix --- Functional package management for GNU
  4. ## Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
  5. ## Copyright © 2013 Andreas Enge <andreas@enge.fr>
  6. ## Copyright © 2015 Alex Kost <alezost@gmail.com>
  7. ## Sly
  8. ## Copyright (C) 2013, 2014 David Thompson <dthompson2@worcester.edu>
  9. ## This program is free software: you can redistribute it and/or
  10. ## modify it under the terms of the GNU General Public License as
  11. ## published by the Free Software Foundation, either version 3 of the
  12. ## License, or (at your option) any later version.
  13. ##
  14. ## This program is distributed in the hope that it will be useful, but
  15. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. ## General Public License for more details.
  18. ##
  19. ## You should have received a copy of the GNU General Public License
  20. ## along with this program. If not, see
  21. ## <http://www.gnu.org/licenses/>.
  22. GOBJECTS = $(SOURCES:%.scm=%.go)
  23. nobase_mod_DATA = $(SOURCES)
  24. nobase_go_DATA = $(GOBJECTS)
  25. # Make sure source files are installed first, so that the mtime of
  26. # installed compiled files is greater than that of installed source
  27. # files. See
  28. # <http://lists.gnu.org/archive/html/guile-devel/2010-07/msg00125.html>
  29. # for details.
  30. guile_install_go_files = install-nobase_goDATA
  31. $(guile_install_go_files): install-nobase_modDATA
  32. GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat
  33. SUFFIXES = .scm .go
  34. .scm.go:
  35. $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<"
  36. moddir=$(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION)
  37. godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/ccache
  38. SOURCES = \
  39. webutils/bytevectors.scm \
  40. webutils/cookie.scm \
  41. webutils/date.scm \
  42. webutils/multipart.scm \
  43. webutils/sessions.scm
  44. TESTS = \
  45. tests/date.scm \
  46. tests/sessions.scm
  47. TEST_EXTENSIONS = .scm
  48. SCM_LOG_DRIVER = \
  49. $(top_builddir)/pre-inst-env \
  50. $(GUILE) --no-auto-compile -e main \
  51. $(top_srcdir)/build-aux/test-driver.scm
  52. # Tell 'build-aux/test-driver.scm' to display only source file names,
  53. # not indivdual test names.
  54. AM_SCM_LOG_DRIVER_FLAGS = --brief=yes
  55. AM_SCM_LOG_FLAGS = --no-auto-compile -L $(top_srcdir)
  56. CLEANFILES = \
  57. $(GOBJECTS) \
  58. $(TESTS:tests/%.scm=%.log) \
  59. *.log *.tar.gz
  60. EXTRA_DIST = \
  61. $(SOURCES) \
  62. $(TESTS) \
  63. build-aux/test-driver.scm \
  64. pre-inst-env.in