-# $Id: Makefile.in,v 1.23 2004/01/16 21:07:33 cph Exp $
+# $Id: Makefile.in,v 1.24 2004/10/29 05:32:18 cph Exp $
#
# Copyright 2000,2001,2002,2004 Massachusetts Institute of Technology
#
# **** END BOILERPLATE ****
-SUBDIRS = 6001 compiler rcs runtime-check sf ssp win32 $(INSTALLED_SUBDIRS)
-INSTALLED_SUBDIRS = microcode runtime cref edwin imail sos star-parser xml
+SUBDIRS = 6001 compiler rcs runtime-check sf win32 $(INSTALLED_SUBDIRS)
+INSTALLED_SUBDIRS = microcode runtime cref edwin imail sos ssp star-parser xml
AUXDIR = @AUXDIR@
EDETC = $(AUXDIR)/edwin/etc
$(mkinstalldirs) $(DESTDIR)$(EDETC)
$(INSTALL_DATA) $(srcdir)/etc/TUTORIAL $(DESTDIR)$(EDETC)/.
- $(INSTALL_DATA) $(srcdir)/etc/mime.types $(DESTDIR)$(EDETC)/.
.PHONY: all mostlyclean clean distclean maintainer-clean tags TAGS install
--- /dev/null
+dnl Process this file with autoconf to produce a configure script.
+
+AC_INIT([MIT/GNU Scheme], [7.7.91], [bug-mit-scheme@gnu.org], [mit-scheme])
+AC_REVISION([$Id: configure.ac,v 1.1 2004/10/29 05:32:18 cph Exp $])
+AC_CONFIG_SRCDIR([microcode/boot.c])
+AC_PROG_MAKE_SET
+
+AC_COPYRIGHT(
+[Copyright 2000,2001,2004 Massachusetts Institute of Technology
+
+This file is part of MIT/GNU Scheme.
+
+MIT/GNU Scheme 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.
+
+MIT/GNU Scheme 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 MIT/GNU Scheme; if not, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+USA.
+])
+
+AC_PROG_INSTALL
+AC_PROG_LN_S
+if test "$(${INSTALL} --help 2> /dev/null | fgrep -e --preserve-timestamps)"
+then
+ INSTALL="${INSTALL} --preserve-timestamps"
+fi
+
+AUXDIR=${libdir}/mit-scheme
+AC_SUBST(AUXDIR)
+
+AC_CONFIG_SUBDIRS([microcode compiler])
+AC_CONFIG_FILES([
+Makefile
+cref/Makefile
+edwin/Makefile
+imail/Makefile
+runtime/Makefile
+sos/Makefile
+ssp/Makefile
+star-parser/Makefile
+xml/Makefile
+])
+AC_OUTPUT
--- /dev/null
+# $Id: Makefile.in,v 1.1 2004/10/29 05:32:18 cph Exp $
+#
+# Copyright 2004 Massachusetts Institute of Technology
+#
+# This file is part of MIT/GNU Scheme.
+#
+# MIT/GNU Scheme 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.
+#
+# MIT/GNU Scheme 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 MIT/GNU Scheme; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
+
+# **** 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@
+SSP_DIR = $(AUXDIR)/ssp
+
+include ../Makefile.std
+
+install:
+ $(mkinstalldirs) $(DESTDIR)$(SSP_DIR)
+ $(INSTALL_DATA) *.com $(DESTDIR)$(SSP_DIR)/.
+ $(INSTALL_DATA) *.bci $(DESTDIR)$(SSP_DIR)/.
+ $(INSTALL_DATA) ssp-unx.pkd $(DESTDIR)$(SSP_DIR)/.
+
+.PHONY: install