Artifact 157f727f7cd533a1c29f44f06231cc50c69b3c6cbf8804368ba541fea1487e16:
- Executable file
r38/util/build.csl
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 641) [annotate] [blame] [check-ins using] [more...]
#!/bin/csh -f # build.csl --- Build CSL REDUCE. # Author: Anthony C. Hearn. setenv lisp csl pushd $reduce/lisp/csl/$MACHINE make csl -f ../cslsrc/Makefile.$MACHINE >& $reduce/log/cslbld.log cat $reduce/util/reduce.csl \ | sed "s|reducevar|$reduce|g" | sed "s/MACHINEvar/$MACHINE/g" \ > $reduce/reduce.csl chmod 755 $reduce/reduce.csl if !(-e ../reduce.img) then # rm -f reduce # cp csl reduce # chmod 755 reduce ./csl -k6000 -v -z -o ../reduce.img $reduce/packages/support/dbuild.lsp \ -- $reduce/log/csldbld.log endif # Now compile all new source files (and make a standard executable). $reduce/util/remake popd