Makefile.am 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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)/site-ccache
  38. SOURCES = \
  39. gcrypt/base16.scm \
  40. gcrypt/base64.scm \
  41. gcrypt/common.scm \
  42. gcrypt/hash.scm \
  43. gcrypt/hmac.scm \
  44. gcrypt/package-config.scm \
  45. gcrypt/pk-crypto.scm \
  46. gcrypt/random.scm \
  47. gcrypt/utils.scm
  48. TESTS = \
  49. tests/base16.scm \
  50. tests/base64.scm \
  51. tests/hash.scm \
  52. tests/hmac.scm \
  53. tests/pk-crypto.scm
  54. TEST_EXTENSIONS = .scm
  55. SCM_LOG_DRIVER = \
  56. $(top_builddir)/pre-inst-env \
  57. $(GUILE) --no-auto-compile -e main \
  58. $(top_srcdir)/build-aux/test-driver.scm
  59. # Tell 'build-aux/test-driver.scm' to display only source file names,
  60. # not indivdual test names.
  61. AM_SCM_LOG_DRIVER_FLAGS = --brief=yes
  62. AM_SCM_LOG_FLAGS = --no-auto-compile -L $(top_srcdir)
  63. CLEANFILES = \
  64. $(GOBJECTS) \
  65. $(TESTS:tests/%.scm=%.log) \
  66. *.log *.tar.gz
  67. EXTRA_DIST = \
  68. $(SOURCES) \
  69. $(TESTS) \
  70. guix.scm \
  71. build-aux/test-driver.scm \
  72. pre-inst-env.in
  73. info_TEXINFOS = guile-gcrypt.texi
  74. guile_gcrypt_TEXINFOS = fdl-1.3.texi