1#!/bin/csh -f
2
3# This scripts is NOT in use at present - it is here as a left over from
4# old arrangements and as a reminder to those creating the new-model
5# scripts.
6
7
8# Script to load PSL REDUCE. It should be installed in /usr/local/bin,
9# somewhere in your search path.
10if ($?reduce == 0) then
11   setenv reduce reducevar
12endif
13if ($?MACHINE == 0) then
14  setenv MACHINE linux
15endif
16
17if ( -e $reduce/lisp/psl/$MACHINE/psl/64 ) then
18#   64 bit system
19    set MEM=2000
20      else
21    set MEM=16000000
22endif
23
24setenv gnuplot $reduce/wutil/$MACHINE
25setenv GNUPLOT_DRIVER_DIR $reduce/wutil/$MACHINE
26
27$reduce/lisp/psl/$MACHINE/psl/bpsl -td $MEM \
28      -f $reduce/lisp/psl/$MACHINE/red/reduce.img
29
30