Makefile.am 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. ## Process this file with automake to produce Makefile.in.
  2. ##
  3. ## Copyright 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Software Foundation, Inc.
  4. ##
  5. ## This file is part of GUILE.
  6. ##
  7. ## GUILE is free software; you can redistribute it and/or modify
  8. ## it under the terms of the GNU General Public License as
  9. ## published by the Free Software Foundation; either version 2, or
  10. ## (at your option) any later version.
  11. ##
  12. ## GUILE is distributed in the hope that it will be useful, but
  13. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ## GNU General Public License for more details.
  16. ##
  17. ## You should have received a copy of the GNU General Public
  18. ## License along with GUILE; see the file COPYING. If not, write
  19. ## to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  20. ## Floor, Boston, MA 02110-1301 USA
  21. SUBDIRS = standalone
  22. SCM_TESTS = tests/alist.test \
  23. tests/and-let-star.test \
  24. tests/arbiters.test \
  25. tests/bit-operations.test \
  26. tests/c-api.test \
  27. tests/chars.test \
  28. tests/common-list.test \
  29. tests/continuations.test \
  30. tests/elisp.test \
  31. tests/environments.test \
  32. tests/eval.test \
  33. tests/exceptions.test \
  34. tests/filesys.test \
  35. tests/format.test \
  36. tests/fractions.test \
  37. tests/ftw.test \
  38. tests/gc.test \
  39. tests/getopt-long.test \
  40. tests/goops.test \
  41. tests/guardians.test \
  42. tests/hash.test \
  43. tests/hooks.test \
  44. tests/import.test \
  45. tests/interp.test \
  46. tests/list.test \
  47. tests/load.test \
  48. tests/modules.test \
  49. tests/multilingual.nottest \
  50. tests/numbers.test \
  51. tests/optargs.test \
  52. tests/options.test \
  53. tests/procprop.test \
  54. tests/poe.test \
  55. tests/popen.test \
  56. tests/ports.test \
  57. tests/posix.test \
  58. tests/q.test \
  59. tests/r4rs.test \
  60. tests/r5rs_pitfall.test \
  61. tests/ramap.test \
  62. tests/reader.test \
  63. tests/receive.test \
  64. tests/regexp.test \
  65. tests/signals.test \
  66. tests/socket.test \
  67. tests/srcprop.test \
  68. tests/srfi-1.test \
  69. tests/srfi-6.test \
  70. tests/srfi-10.test \
  71. tests/srfi-11.test \
  72. tests/srfi-13.test \
  73. tests/srfi-14.test \
  74. tests/srfi-19.test \
  75. tests/srfi-26.test \
  76. tests/srfi-31.test \
  77. tests/srfi-34.test \
  78. tests/srfi-35.test \
  79. tests/srfi-37.test \
  80. tests/srfi-39.test \
  81. tests/srfi-60.test \
  82. tests/srfi-69.test \
  83. tests/srfi-88.test \
  84. tests/srfi-4.test \
  85. tests/srfi-9.test \
  86. tests/strings.test \
  87. tests/structs.test \
  88. tests/symbols.test \
  89. tests/syncase.test \
  90. tests/syntax.test \
  91. tests/threads.test \
  92. tests/time.test \
  93. tests/unif.test \
  94. tests/version.test \
  95. tests/weaks.test
  96. SCM_TESTS_DIRS = tests/asmobs \
  97. tests/c-api
  98. EXTRA_DIST = guile-test lib.scm $(SCM_TESTS) ChangeLog-2008
  99. ## Automake should be able to handle the distribution of tests/asmobs
  100. ## etc without any help, but not all version can handle 'deep'
  101. ## directories. So we do it on our own.
  102. dist-hook:
  103. for d in $(SCM_TESTS_DIRS); do \
  104. cp -pR $(srcdir)/$$d $(distdir)/$$d; \
  105. rm -rf $(distdir)/$$d/CVS; \
  106. done