remake2.dat 724 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. % remake2.dat -- support for remake2 script.
  2. % Author: Anthony C. Hearn.
  3. symbolic;
  4. !*argnochk := t;
  5. on gc;
  6. if getenv "lisp" = "psl"
  7. then <<load compiler;
  8. errorset('(load compat),nil,nil); % PSL compiler REDUCE support.
  9. on verboseload>>;
  10. if not getd 'package!-remake2 then load remake;
  11. package!-remake2(prolog_file,'support);
  12. package!-remake2(rend_file,'support);
  13. package!-remake2('entry,'support);
  14. package!-remake2('remake,'support);
  15. package!-remake2('patches,'support);
  16. % See if REDUCE core image needs remaking.
  17. if !*faslp
  18. then <<old := wrs(ofil:= open("$reduce/lisp/$lisp/$MACHINE/mkreduce",
  19. 'output));
  20. print nil;
  21. wrs old;
  22. close ofil>>;
  23. bye;