remake2 656 B

123456789101112131415161718192021222324252627282930313233343536
  1. #!/bin/csh -f
  2. # Compile a package set.
  3. # Author: Anthony C. Hearn.
  4. $reduce/reduce.$lisp >>& $reduce/log/remake.log << EOF
  5. symbolic;
  6. !*argnochk := t;
  7. if getenv "lisp" eq "psl"
  8. then <<load compiler;
  9. errorset('(load compat),nil,nil); % PSL compiler REDUCE support.
  10. on verboseload>>;
  11. if not getd 'package!-remake2 then load remake;
  12. package!-remake2(prolog_file,'support);
  13. package!-remake2(rend_file,'support);
  14. package!-remake2('entry,'support);
  15. package!-remake2('remake,'support);
  16. package!-remake2('patches,'support);
  17. % See if REDUCE core image needs remaking.
  18. if !*faslp then system "touch $reduce/lisp/$lisp/$MACHINE/mkreduce";
  19. bye;
  20. EOF