From: Chris Hanson Date: Thu, 4 Oct 2001 17:11:06 +0000 (+0000) Subject: Integrate into MIT Scheme. X-Git-Tag: 20090517-FFI~2521 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=a1026defd471e5fac35c4a9add1564494adfbf53;p=mit-scheme.git Integrate into MIT Scheme. --- diff --git a/v7/src/star-parser/Makefile.in b/v7/src/star-parser/Makefile.in new file mode 100644 index 000000000..ba0f7667c --- /dev/null +++ b/v7/src/star-parser/Makefile.in @@ -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 index 000000000..f3adf6fb8 --- /dev/null +++ b/v7/src/xml/Makefile.in @@ -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 diff --git a/v7/src/xml/compile.scm b/v7/src/xml/compile.scm index ec9887722..c2a7d15ea 100644 --- a/v7/src/xml/compile.scm +++ b/v7/src/xml/compile.scm @@ -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