From: Chris Hanson Date: Tue, 25 Sep 2001 18:25:46 +0000 (+0000) Subject: CREF should now be included in the install directory. X-Git-Tag: 20090517-FFI~2546 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=7743e3e26f50fe0314b68de1a5fd982b49aea8cc;p=mit-scheme.git CREF should now be included in the install directory. --- diff --git a/v7/src/Makefile.in b/v7/src/Makefile.in index a222e2a6b..94123f386 100644 --- a/v7/src/Makefile.in +++ b/v7/src/Makefile.in @@ -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 diff --git a/v7/src/configure.in b/v7/src/configure.in index e808def2f..6168709c0 100644 --- a/v7/src/configure.in +++ b/v7/src/configure.in @@ -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 index 000000000..bcec4c9bd --- /dev/null +++ b/v7/src/cref/Makefile.in @@ -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