From 70634522760096c4cb670994fd064c602931c729 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sun, 7 Sep 2008 23:17:58 +0200 Subject: [PATCH] compile boot-9. woop! * ice-9/Makefile.am (SOURCES, NOCOMP_SOURCES): Compile boot-9.scm. Wooooo! This makes some things harder to debug, and program loading needs to cons much less, but I think it makes sense to compile boot-9 by default if for no other reason than to catch bugs earlier. --- ice-9/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ice-9/Makefile.am b/ice-9/Makefile.am index 1d4be9d3d..9201b62bc 100644 --- a/ice-9/Makefile.am +++ b/ice-9/Makefile.am @@ -25,9 +25,9 @@ SUBDIRS = debugger debugging # These should be installed and distributed. modpath = ice-9 -SOURCES = and-let-star.scm -NOCOMP_SOURCES = \ - boot-9.scm calling.scm common-list.scm \ +SOURCES = and-let-star.scm boot-9.scm +NOCOMP_SOURCES = \ + calling.scm common-list.scm \ debug.scm debugger.scm documentation.scm emacs.scm expect.scm \ format.scm getopt-long.scm hcons.scm i18n.scm \ lineio.scm ls.scm mapping.scm \