Artifact f158c3ea25450c94fab3b056dbfe6a45f2901e96fc85caeb4cd66694b7546874:
- File
psl-1983/util/build.red
— part of check-in
[eb17ceb7f6]
at
2020-04-21 19:40:01
on branch master
— Add Reduce 3.0 to the historical section of the archive, and some more
files relating to version sof PSL from the early 1980s. Thanks are due to
Paul McJones and Nelson Beebe for these, as well as to all the original
authors.git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/historical@5328 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 956) [annotate] [blame] [check-ins using] [more...]
% % BUILD.RED - Compile a load module % % Author: Eric Benson % Symbolic Computation Group % Computer Science Dept. % University of Utah % Date: 23 March 1982 % Copyright (c) 1982 University of Utah % % Edit by MLG, 9 Feb, chchanged Buildformat to use $pl/ % <PSL.UTIL>BUILD.RED.3, 1-Dec-82 16:12:33, Edit by BENSON % Added if_system(HP9836, ... ) fluid '(!*quiet_faslout % turns off welcome message in faslout !*Lower % lowercase ids on output !*UserMode % query on redefinition BuildFileFormat!* ); if_system(Tops20, BuildFileFormat!* := "pl:%w"); if_system(Unix, BuildFileFormat!* := "$pl/%w"); if_system(HP9836, BuildFileFormat!* := "pl:%w"); lisp procedure Build X; begin scalar !*UserMode, !*quiet_faslout; !*quiet_faslout := T; (lambda (!*Lower); << FaslOut BldMsg(BuildFileFormat!*, X); X := BldMsg("%w.build", X) >>)(T); EvIn list X; FaslEnd; end; END;