Artifact 452a115d1affc0115c01809e6177110bf1b083d52925f29a2930dd1682d36a2b:
- Executable file
r38/lisp/csl/util/makeall.bat
— 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: 1157) [annotate] [blame] [check-ins using] [more...]
REM makeall.bat REM re-builds absolutely everything, inclusing doing a re-profile REM of REDUCE to select what should be compiled into C. This should only REM be required after MAJOR changes in the source. REM Note that when using Windows the "make" utility that you are REM provided with may well be called "wmake" or "nmake". You need to adjust REM this script or arrange to make a copy of the relevant utility under the REM simple name "make.exe". You also need to have copies the correct REM makefile (typically Makefile.vc or Makefile.w32) into the current REM directory. if "x%1"=="x" (set srcdir=../cslbase) else set srcdir=%1 make slowr38.exe call %srcdir:/=\%\..\util\boot38 %srcdir% call %srcdir:/=\%\..\util\profile %srcdir% copy profile.dat %srcdir:/=\%\..\csl-c del profile.dat call %srcdir:/=\%\..\util\c-code38 %srcdir% make r38.exe REM the bits from here down are cheaper and are all that is usually needed call %srcdir:/=\%\..\util\full38 %srcdir% call %srcdir:/=\%\..\util\testall %srcdir% call %srcdir:/=\%\..\util\checkall %srcdir% REM log\checkall.log and log\times.log should now be up to date.