CREF should now be included in the install directory.
authorChris Hanson <org/chris-hanson/cph>
Tue, 25 Sep 2001 18:25:46 +0000 (18:25 +0000)
committerChris Hanson <org/chris-hanson/cph>
Tue, 25 Sep 2001 18:25:46 +0000 (18:25 +0000)
v7/src/Makefile.in
v7/src/configure.in
v7/src/cref/Makefile.in [new file with mode: 0644]

index a222e2a6bad82f1afbb3a7554c6e95c24f1a034c..94123f386e5949d1ee3835ac201ddbb2d0aef126 100644 (file)
@@ -1,6 +1,6 @@
-# $Id: Makefile.in,v 1.16 2000/12/21 18:11:54 cph Exp $
+# $Id: Makefile.in,v 1.17 2001/09/25 18:24:54 cph Exp $
 #
-# Copyright (c) 2000 Massachusetts Institute of Technology
+# Copyright (c) 2000, 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
@@ -14,7 +14,8 @@
 #
 # 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+# 02111-1307, USA.
 
 # **** BEGIN BOILERPLATE ****
 
@@ -74,7 +75,7 @@ tags TAGS:
        $(srcdir)/Tags.sh $(SUBDIRS)
 
 install:
-       @for SUBDIR in microcode runtime sos edwin imail; do \
+       @for SUBDIR in microcode runtime cref sos edwin imail; do \
            echo "Making $@ in $${SUBDIR}";\
            ( cd $${SUBDIR}; $(MAKE) $@ ) || exit 1;\
        done
index e808def2fa8cf9a1720231c0347a6f6fd5c1ecda..6168709c0ef6e41be8d631290f1d6c6e5a48547f 100644 (file)
@@ -17,7 +17,7 @@ dnl along with this program; if not, write to the Free Software
 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 dnl 02111-1307, USA.
 
-AC_REVISION([$Id: configure.in,v 1.3 2001/04/15 21:12:22 cph Exp $])
+AC_REVISION([$Id: configure.in,v 1.4 2001/09/25 18:25:46 cph Exp $])
 AC_INIT(microcode/boot.c)
 
 AC_PROG_INSTALL
@@ -32,4 +32,4 @@ AUXDIR=${libdir}/mit-scheme
 AC_SUBST(AUXDIR)
 
 AC_CONFIG_SUBDIRS(microcode compiler)
-AC_OUTPUT(Makefile runtime/Makefile sos/Makefile edwin/Makefile imail/Makefile)
+AC_OUTPUT(Makefile runtime/Makefile cref/Makefile sos/Makefile edwin/Makefile imail/Makefile)
diff --git a/v7/src/cref/Makefile.in b/v7/src/cref/Makefile.in
new file mode 100644 (file)
index 0000000..bcec4c9
--- /dev/null
@@ -0,0 +1,82 @@
+# $Id: Makefile.in,v 1.1 2001/09/25 18:24:08 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@
+CREF_DIR = $(AUXDIR)/cref
+
+all:
+       echo "No ALL action"
+
+mostlyclean clean distclean maintainer-clean:
+       ./Clean.sh $@
+
+tags TAGS:
+       ./Tags.sh
+
+install:
+       $(mkinstalldirs) $(DESTDIR)$(CREF_DIR)
+       $(INSTALL_DATA) *.com $(DESTDIR)$(CREF_DIR)/.
+       $(INSTALL_DATA) *.bci $(DESTDIR)$(CREF_DIR)/.
+       $(INSTALL_DATA) cref.pkd $(DESTDIR)$(CREF_DIR)/.
+
+.PHONY: all mostlyclean clean distclean maintainer-clean tags TAGS install