xbuild 511 B

123456789101112131415161718
  1. #!/bin/csh -f
  2. # xbuild --- Build all REDUCE fasl files from an existing (possibly
  3. # minimal) REDUCE.
  4. # Author: Anthony C. Hearn.
  5. set list = (module prolog rlisp rend poly alg mathpr arith matrix \
  6. hephys entry arnum cedit compact excalc ezgcd factor \
  7. gentran dipoly groebner groebnr2 int algint \
  8. pretty rcref roots rprint scope solve spde taylor tps \
  9. misc odesolve avector orthovec)
  10. foreach x ($list)
  11. echo compiling $x ...
  12. $reduce/util/mkfasl $x
  13. end