-# $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
#
# 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 ****
$(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
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
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)
--- /dev/null
+# $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