Integrate into MIT Scheme.
authorChris Hanson <org/chris-hanson/cph>
Thu, 4 Oct 2001 17:11:06 +0000 (17:11 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 4 Oct 2001 17:11:06 +0000 (17:11 +0000)
v7/src/star-parser/Makefile.in [new file with mode: 0644]
v7/src/xml/Makefile.in [new file with mode: 0644]
v7/src/xml/compile.scm

diff --git a/v7/src/star-parser/Makefile.in b/v7/src/star-parser/Makefile.in
new file mode 100644 (file)
index 0000000..ba0f766
--- /dev/null
@@ -0,0 +1,83 @@
+# $Id: Makefile.in,v 1.1 2001/10/04 17:10:27 cph Exp $
+#
+# Copyright (c) 2001 Massachusetts Institute of Technology
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
+# Standard Makefile for Scheme subsystem directories.
+# This makefile supports some utilities for Scheme subsystems.
+# Tools to rebuild these subsystems are written in Scheme and do not
+# use `make'.
+
+# **** BEGIN BOILERPLATE ****
+
+SHELL = @SHELL@
+
+@SET_MAKE@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+
+DESTDIR =
+top_builddir = .
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+
+LN_S = @LN_S@
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+
+# **** END BOILERPLATE ****
+
+AUXDIR = @AUXDIR@
+PARSER_DIR = $(AUXDIR)/star-parser
+
+all:
+       echo "No ALL action"
+
+mostlyclean clean distclean maintainer-clean:
+       ./Clean.sh $@
+
+tags TAGS:
+       ./Tags.sh
+
+install:
+       $(mkinstalldirs) $(DESTDIR)$(PARSER_DIR)
+       $(INSTALL_DATA) *.com $(DESTDIR)$(PARSER_DIR)/.
+       $(INSTALL_DATA) *.bci $(DESTDIR)$(PARSER_DIR)/.
+       $(INSTALL_DATA) parser.pkd $(DESTDIR)$(PARSER_DIR)/.
+       $(INSTALL_DATA) $(srcdir)/load.scm $(DESTDIR)$(PARSER_DIR)/.
+
+.PHONY: all mostlyclean clean distclean maintainer-clean tags TAGS install
diff --git a/v7/src/xml/Makefile.in b/v7/src/xml/Makefile.in
new file mode 100644 (file)
index 0000000..f3adf6f
--- /dev/null
@@ -0,0 +1,83 @@
+# $Id: Makefile.in,v 1.1 2001/10/04 17:11:06 cph Exp $
+#
+# Copyright (c) 2001 Massachusetts Institute of Technology
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or (at
+# your option) any later version.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
+# Standard Makefile for Scheme subsystem directories.
+# This makefile supports some utilities for Scheme subsystems.
+# Tools to rebuild these subsystems are written in Scheme and do not
+# use `make'.
+
+# **** BEGIN BOILERPLATE ****
+
+SHELL = @SHELL@
+
+@SET_MAKE@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+
+DESTDIR =
+top_builddir = .
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+
+LN_S = @LN_S@
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+
+# **** END BOILERPLATE ****
+
+AUXDIR = @AUXDIR@
+XML_DIR = $(AUXDIR)/xml
+
+all:
+       echo "No ALL action"
+
+mostlyclean clean distclean maintainer-clean:
+       ./Clean.sh $@
+
+tags TAGS:
+       ./Tags.sh
+
+install:
+       $(mkinstalldirs) $(DESTDIR)$(XML_DIR)
+       $(INSTALL_DATA) *.com $(DESTDIR)$(XML_DIR)/.
+       $(INSTALL_DATA) *.bci $(DESTDIR)$(XML_DIR)/.
+       $(INSTALL_DATA) xml.pkd $(DESTDIR)$(XML_DIR)/.
+       $(INSTALL_DATA) $(srcdir)/load.scm $(DESTDIR)$(XML_DIR)/.
+
+.PHONY: all mostlyclean clean distclean maintainer-clean tags TAGS install
index ec98877220c4256615a524c2da00c258f11c3e38..c2a7d15ea8ac7d7c19d4d0f99e1695e03d2dc175 100644 (file)
@@ -1,6 +1,6 @@
 ;;; -*-Scheme-*-
 ;;;
-;;; $Id: compile.scm,v 1.5 2001/10/01 05:22:52 cph Exp $
+;;; $Id: compile.scm,v 1.6 2001/10/04 17:06:15 cph Exp $
 ;;;
 ;;; Copyright (c) 2001 Massachusetts Institute of Technology
 ;;;
@@ -20,6 +20,7 @@
 ;;; 02111-1307, USA.
 
 (load-option 'CREF)
+(load-option '*PARSER)
 
 (if (not (environment-bound? system-global-environment 'XML-PARSER-MACROS))
     (local-assignment system-global-environment