1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00
guile/testsuite/Makefile.am
Andy Wingo b571a648d5 fix distcheck
* src/Makefile.am (AM_CFLAGS, libguile_vm_la_LDFLAGS): Don't build with
  -pg. (There are better profilers out there.)
  (CLEANFILES): Add guilev and guile-disasm.

* testsuite/Makefile.am (GUILE_VM): s/srcdir/builddir/.
2008-05-20 11:54:05 +02:00

27 lines
638 B
Makefile

# The test programs.
# The Libtool executable.
GUILE_VM = $(top_builddir)/src/guile-vm
vm_test_files = \
t-basic-contructs.scm \
t-global-bindings.scm \
t-closure.scm \
t-closure2.scm \
t-closure3.scm \
t-do-loop.scm \
t-macros.scm \
t-macros2.scm \
t-proc-with-setter.scm \
t-values.scm \
t-records.scm \
t-match.scm \
t-mutual-toplevel-defines.scm
EXTRA_DIST = run-vm-tests.scm $(vm_test_files)
check:
$(GUILE_VM) -L $(top_srcdir)/module \
-l run-vm-tests.scm -e run-vm-tests \
$(vm_test_files)