Makefile.am 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ## Process this file with automake to produce Makefile.in.
  2. ##
  3. ## Copyright 2005, 2006, 2008, 2009, 2010 Software Foundation, Inc.
  4. ##
  5. ## This file is part of GUILE.
  6. ##
  7. ## GUILE is free software; you can redistribute it and/or modify it
  8. ## under the terms of the GNU Lesser General Public License as
  9. ## published by the Free Software Foundation; either version 3, 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 Lesser General Public License for more details.
  16. ##
  17. ## You should have received a copy of the GNU Lesser General Public
  18. ## License along with GUILE; see the file COPYING.LESSER. If not,
  19. ## write to the Free Software Foundation, Inc., 51 Franklin Street,
  20. ## Fifth Floor, Boston, MA 02110-1301 USA
  21. TESTS_ENVIRONMENT = \
  22. $(top_builddir)/meta/guile \
  23. -l $(srcdir)/run-vm-tests.scm -e run-vm-tests
  24. TESTS = \
  25. t-basic-contructs.scm \
  26. t-global-bindings.scm \
  27. t-catch.scm \
  28. t-call-cc.scm \
  29. t-closure.scm \
  30. t-closure2.scm \
  31. t-closure3.scm \
  32. t-closure4.scm \
  33. t-do-loop.scm \
  34. t-literal-integers.scm \
  35. t-macros.scm \
  36. t-macros2.scm \
  37. t-map.scm \
  38. t-or.scm \
  39. t-proc-with-setter.scm \
  40. t-quasiquote.scm \
  41. t-values.scm \
  42. t-records.scm \
  43. t-match.scm \
  44. t-mutual-toplevel-defines.scm
  45. EXTRA_DIST = run-vm-tests.scm $(TESTS)