Install SSP. Update top-level configure.
authorChris Hanson <org/chris-hanson/cph>
Fri, 29 Oct 2004 05:32:18 +0000 (05:32 +0000)
committerChris Hanson <org/chris-hanson/cph>
Fri, 29 Oct 2004 05:32:18 +0000 (05:32 +0000)
v7/src/Makefile.in
v7/src/configure.ac [new file with mode: 0644]
v7/src/ssp/Makefile.in [new file with mode: 0644]

index e4756f4ce4976802ca10bfd8f5ac6377f81197dc..6722966f8b22519a30e5d07ca287400f281e7c85 100644 (file)
@@ -1,4 +1,4 @@
-# $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
 #
@@ -58,8 +58,8 @@ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
 # **** 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
@@ -88,6 +88,5 @@ install:
 
        $(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
diff --git a/v7/src/configure.ac b/v7/src/configure.ac
new file mode 100644 (file)
index 0000000..0d2df0d
--- /dev/null
@@ -0,0 +1,51 @@
+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
diff --git a/v7/src/ssp/Makefile.in b/v7/src/ssp/Makefile.in
new file mode 100644 (file)
index 0000000..c474eae
--- /dev/null
@@ -0,0 +1,72 @@
+# $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