along. "Setup.sh" in microcode passes those arguments to configure.
#!/bin/sh
#
-# $Id: Setup.sh,v 1.13 2006/09/16 11:19:08 gjr Exp $
+# $Id: Setup.sh,v 1.14 2006/09/25 04:38:45 cph Exp $
#
# Copyright 2000,2001,2003,2004,2006 Massachusetts Institute of Technology
#
sf sos ssp star-parser win32 xdoc xml microcode; do
echo "setting up ${SUBDIR}"
maybe_link ${SUBDIR}/Setup.sh ../etc/Setup.sh
- ( cd ${SUBDIR} && ./Setup.sh ) || exit 1
+ ( cd ${SUBDIR} && ./Setup.sh "$@" ) || exit 1
done
#!/bin/sh
#
-# $Id: Setup.sh,v 1.6 2003/02/14 18:48:11 cph Exp $
+# $Id: Setup.sh,v 1.7 2006/09/25 04:38:51 cph Exp $
#
-# Copyright 2000 Massachusetts Institute of Technology
+# Copyright 2000,2006 Massachusetts Institute of Technology
#
# This file is part of MIT/GNU Scheme.
#
# Utility to set up the MIT/GNU Scheme compiler directory.
# The working directory must be the compiler directory.
-if [ $# -ne 0 ]; then
- echo "usage: $0"
- exit 1
-fi
-
. ../etc/functions.sh
-../etc/Setup.sh
+../etc/Setup.sh "$@"
for N in 1 2 3; do
maybe_link machines/vax/dinstr${N}.scm instr${N}.scm
#!/bin/sh
#
-# $Id: Setup.sh,v 1.9 2003/02/14 18:48:11 cph Exp $
+# $Id: Setup.sh,v 1.10 2006/09/25 04:38:56 cph Exp $
#
-# Copyright 2000 Massachusetts Institute of Technology
+# Copyright 2000,2006 Massachusetts Institute of Technology
#
# This file is part of MIT/GNU Scheme.
#
# Utility to set up an MIT/GNU Scheme build directory.
# The working directory must be the build directory.
-if [ $# -ne 0 ]; then
- echo "usage: $0"
- exit 1
-fi
-
. ../etc/functions.sh
if [ ! -f Makefile.in ]; then
#!/bin/sh
-# $Id: Setup.sh,v 1.8 2003/02/14 18:48:11 cph Exp $
+# $Id: Setup.sh,v 1.9 2006/09/25 04:39:01 cph Exp $
#
-# Copyright 2000 Massachusetts Institute of Technology
+# Copyright 2000,2006 Massachusetts Institute of Technology
#
# This file is part of MIT/GNU Scheme.
#
fi
( cd cmpauxmd && make )
if [ ! -f Makefile.in ]; then
- makegen/makeinit.sh
+ makegen/makeinit.sh "$@"
fi
#!/bin/sh
-# $Id: makeinit.sh,v 1.12 2006/06/10 05:24:54 cph Exp $
+# $Id: makeinit.sh,v 1.13 2006/09/25 04:39:07 cph Exp $
#
# Copyright 2000,2006 Massachusetts Institute of Technology
#
# generate "config.h".
[ -f Makefile.in ] || touch Makefile.in
-./configure
+./configure "$@"
# Generate "Makefile.in" from "Makefile.in.in". Requires "config.h",
# because dependencies are generated by running GCC -M on the source
#!/bin/sh
#
-# $Id: Setup.sh,v 1.8 2003/02/14 18:48:13 cph Exp $
+# $Id: Setup.sh,v 1.9 2006/09/25 04:39:12 cph Exp $
#
-# Copyright 2000,2001 Massachusetts Institute of Technology
+# Copyright 2000,2001,2006 Massachusetts Institute of Technology
#
# This file is part of MIT/GNU Scheme.
#
# Utility to set up an MIT/GNU Scheme build directory.
# The working directory must be the build directory.
-if [ $# -ne 0 ]; then
- echo "usage: $0"
- exit 1
-fi
-
. ../etc/functions.sh
-../etc/Setup.sh
+../etc/Setup.sh "$@"
for FNS in `cd ../runtime; ls *.scm`; do
FN="`basename ${FNS} .scm`.bin"