boot38.sh 480 B

12345678910111213141516171819202122
  1. #! /bin/sh
  2. # boot38 --- Build REDUCE 3.8 under Linux/Unix etc using CSL.
  3. # Author: Arthur C Norman
  4. # This takes around 4 minutes on a P6-400 or 30 secs on an Athlon64 3200+
  5. # This script may be passed a directory as arg1, but if not it expects
  6. # to find my source files in "../cslbase"
  7. if test -n "$1"
  8. then srcdir="$1"
  9. else srcdir=../cslbase
  10. fi
  11. unset reduce
  12. ./slowr38 -w -z -g -Dno_init_file $srcdir/../util/build38.lsp -D@srcdir=$srcdir -- log/boot38.log
  13. # end of script