#!/bin/sh
#
-# $Id: Setup.sh,v 1.4 2000/12/08 17:56:34 cph Exp $
+# $Id: Setup.sh,v 1.5 2000/12/08 18:04:12 cph Exp $
#
# Copyright (c) 2000 Massachusetts Institute of Technology
#
autoconf
fi
-maybe_mkdir ()
-{
- if [ ! -e ${1} ]; then
- echo "mkdir ${1}"
- mkdir ${1}
- fi
-}
-
-maybe_link ()
-{
- if [ ! -L ${1} ]; then
- echo "ln -s ${2} ${1}"
- ln -s ${2} ${1}
- fi
-}
+. etc/functions.sh
# lib
maybe_mkdir lib
#!/bin/sh
#
-# $Id: Setup.sh,v 1.2 2000/12/08 06:09:03 cph Exp $
+# $Id: Setup.sh,v 1.3 2000/12/08 18:04:12 cph Exp $
#
# Copyright (c) 2000 Massachusetts Institute of Technology
#
exit 1
fi
-../etc/Setup.sh
+. ../etc/functions.sh
-maybe_link ()
-{
- if [ ! -e ${1} ]; then
- echo "ln -s ${2} ${1}"
- ln -s ${2} ${1}
- fi
-}
+../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.4 2000/12/08 06:12:52 cph Exp $
+# $Id: Setup.sh,v 1.5 2000/12/08 18:04:13 cph Exp $
#
# Copyright (c) 2000 Massachusetts Institute of Technology
#
exit 1
fi
-maybe_link ()
-{
- if [ ! -e ${1} ]; then
- echo "ln -s ${2} ${1}"
- ln -s ${2} ${1}
- fi
-}
+. ../etc/functions.sh
maybe_link Makefile ../Makefile.std
for FN in Clean.sh Stage.sh Tags.sh; do
--- /dev/null
+#!/bin/sh
+#
+# $Id: functions.sh,v 1.1 2000/12/08 18:04:13 cph Exp $
+#
+# Copyright (c) 2000 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+# Functions for shell scripts.
+
+maybe_mkdir ()
+{
+ if [ ! -e ${1} ]; then
+ echo "mkdir ${1}"
+ mkdir ${1}
+ fi
+}
+
+maybe_link ()
+{
+ if [ ! -e ${1} ] && [ ! -L ${1} ]; then
+ echo "ln -s ${2} ${1}"
+ ln -s ${2} ${1}
+ fi
+}
#!/bin/sh
-# $Id: Setup.sh,v 1.3 2000/12/08 17:53:58 cph Exp $
+# $Id: Setup.sh,v 1.4 2000/12/08 18:08:02 cph Exp $
#
# Copyright (c) 2000 Massachusetts Institute of Technology
#
echo "autoconf"
autoconf
fi
-makegen/makeinit.sh
-make setup
-make distclean
+( cd cmpauxmd && $(MAKE) )
+if [ ! -f Makefile.in ]; then
+ makegen/makeinit.sh
+fi
#!/bin/sh
#
-# $Id: Setup.sh,v 1.2 2000/12/08 06:13:56 cph Exp $
+# $Id: Setup.sh,v 1.3 2000/12/08 18:04:13 cph Exp $
#
# Copyright (c) 2000 Massachusetts Institute of Technology
#
exit 1
fi
-../etc/Setup.sh
+. ../etc/functions.sh
-maybe_link ()
-{
- if [ ! -L ${1} ]; then
- echo "ln -s ${2} ${1}"
- ln -s ${2} ${1}
- fi
-}
+../etc/Setup.sh
for FNS in `cd ../runtime; ls *.scm`; do
FN="`basename ${FNS} .scm`.bin"