Artifact accab07eca38526ee62fae660bfdad6dd5e4cfc2bdf48ba5c8a64332a9a432be:
- Executable file
r34/util/xbuild
— 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: 511) [annotate] [blame] [check-ins using] [more...]
#!/bin/csh -f
# xbuild --- Build all REDUCE fasl files from an existing (possibly
# minimal) REDUCE.
# Author: Anthony C. Hearn.
set list = (module prolog rlisp rend poly alg mathpr arith matrix \
hephys entry arnum cedit compact excalc ezgcd factor \
gentran dipoly groebner groebnr2 int algint \
pretty rcref roots rprint scope solve spde taylor tps \
misc odesolve avector orthovec)
foreach x ($list)
echo compiling $x ...
$reduce/util/mkfasl $x
end