diff options
author | dos-reis <gdr@axiomatics.org> | 2011-08-13 15:05:20 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2011-08-13 15:05:20 +0000 |
commit | 57348f16a89792d9730e7d5694e3d0acc98157bc (patch) | |
tree | 551a14d42a5836ea8abc627036906d9ac89fbdf4 /src/algebra | |
parent | 64a0eb226331be7e41848a7d807c5caa4f248ffa (diff) | |
download | open-axiom-57348f16a89792d9730e7d5694e3d0acc98157bc.tar.gz |
* interp/c-util.boot (instantiationArgs): New.
(domainDirectory): Likewise.
(domainLookupFunction): Likewise.
(domainOperatorTable): Likewise.
(domainAttributes): Likewise.
(domainPredicates): Likewise.
(domainData): Likewise.
* interp/buildom.boot: Use new domain accessors.
* interp/functor.boot: Likewise.
* interp/interop.boot: Likewise.
* interp/nruncomp.boot: Likewise.
* interp/nrunfast.boot: Likewise.
Diffstat (limited to 'src/algebra')
-rw-r--r-- | src/algebra/Makefile.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/algebra/Makefile.in b/src/algebra/Makefile.in index bb7f11e7..6ad6e102 100644 --- a/src/algebra/Makefile.in +++ b/src/algebra/Makefile.in @@ -520,13 +520,17 @@ strap-1/%.$(FASLEXT): %.spad strap-1/.started $(BOOTSTRAP) --strap=strap-0 --sysalg=strap-1 --optimize=3 $< && \ cp $*.NRLIB/code.$(FASLEXT) $@ && \ if test -d $*-.NRLIB; then cp $*-.NRLIB/code.$(FASLEXT) \ - strap-1/$*-.$(FASLEXT); else : ; fi + strap-1/$*-.$(FASLEXT); else : ; fi && \ + if test x@oa_keep_files@ = xyes; then \ + cp $*.NRLIB/code.lsp strap-1/$*.lsp; fi strap-2/%.$(FASLEXT): %.spad strap-2/.started $(BOOTSTRAP) --strap=strap-1 --sysalg=strap-2 --optimize=3 $< && \ cp $*.NRLIB/code.$(FASLEXT) $@ && \ if test -d $*-.NRLIB; then cp $*-.NRLIB/code.$(FASLEXT) \ - strap-2/$*-.$(FASLEXT); else : ; fi + strap-2/$*-.$(FASLEXT); else : ; fi && \ + if test x@oa_keep_files@ = xyes; then \ + cp $*.NRLIB/code.lsp strap-1/$*.lsp; fi SPADFILES= \ |