Integrate *PARSER and XML support into system.
authorChris Hanson <org/chris-hanson/cph>
Thu, 4 Oct 2001 17:11:49 +0000 (17:11 +0000)
committerChris Hanson <org/chris-hanson/cph>
Thu, 4 Oct 2001 17:11:49 +0000 (17:11 +0000)
v7/src/Makefile.in
v7/src/Setup.sh
v7/src/configure.in

index 94123f386e5949d1ee3835ac201ddbb2d0aef126..c196fb6beb52bbbe341e586b6898336b4cadc477 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile.in,v 1.17 2001/09/25 18:24:54 cph Exp $
+# $Id: Makefile.in,v 1.18 2001/10/04 17:06:59 cph Exp $
 #
 # Copyright (c) 2000, 2001 Massachusetts Institute of Technology
 #
@@ -56,8 +56,8 @@ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
 # **** END BOILERPLATE ****
 
-SUBDIRS = 6001 compiler cref edwin imail microcode \
-         rcs runtime runtime-check sf sos win32
+SUBDIRS = 6001 compiler rcs runtime-check sf win32 $(INSTALLED_SUBDIRS)
+INSTALLED_SUBDIRS = microcode runtime cref edwin imail sos star-parser xml
 
 AUXDIR = @AUXDIR@
 EDETC = $(AUXDIR)/edwin/etc
@@ -75,7 +75,7 @@ tags TAGS:
        $(srcdir)/Tags.sh $(SUBDIRS)
 
 install:
-       @for SUBDIR in microcode runtime cref sos edwin imail; do \
+       @for SUBDIR in $(INSTALLED_SUBDIRS); do \
            echo "Making $@ in $${SUBDIR}";\
            ( cd $${SUBDIR}; $(MAKE) $@ ) || exit 1;\
        done
index 5d62975aa4d244245342a3d933c67a8fbbb58600..7be75cf07823ab47e068da7a2126158669c3e0f9 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $Id: Setup.sh,v 1.6 2000/12/08 18:24:09 cph Exp $
+# $Id: Setup.sh,v 1.7 2001/10/04 17:06:52 cph Exp $
 #
 # Copyright (c) 2000 Massachusetts Institute of Technology
 #
@@ -45,7 +45,7 @@ maybe_link lib/edwin/autoload ../../edwin
 SUBDIRS=""
 
 for SUBDIR in 6001 compiler cref edwin imail microcode rcs \
-       runtime runtime-check sf sos win32; do
+       runtime runtime-check sf sos star-parser win32 xml; do
     echo "setting up ${SUBDIR}"
     maybe_link ${SUBDIR}/Setup.sh ../etc/Setup.sh
     ( cd ${SUBDIR} && ./Setup.sh ) || exit 1
index 6168709c0ef6e41be8d631290f1d6c6e5a48547f..2570eec43a0b017007f96ae40dd1786c8132dcfc 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.4 2001/09/25 18:25:46 cph Exp $])
+AC_REVISION([$Id: configure.in,v 1.5 2001/10/04 17:11:49 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 cref/Makefile sos/Makefile edwin/Makefile imail/Makefile)
+AC_OUTPUT(Makefile runtime/Makefile cref/Makefile edwin/Makefile imail/Makefile sos/Makefile star-parser/Makefile xml/Makefile)