diff options
author | dos-reis <gdr@axiomatics.org> | 2007-09-06 11:03:15 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-09-06 11:03:15 +0000 |
commit | a5e61a3197d718059d54ff3d77410d97554fb0af (patch) | |
tree | 9651050106905fcbfe74832c5beb259ff292cc1b /src/interp | |
parent | 3836b55f081fe196e8f7beecc674c5c8a1f98b35 (diff) | |
download | open-axiom-a5e61a3197d718059d54ff3d77410d97554fb0af.tar.gz |
src/lisp
* core.lisp.pamphlet (|compileLispFile|): Tidy.
src/interp
* Makefile.pamphlet (boot-pkg.lisp): Remove rule.
(diagnostics.boot): Likewise.
(sys-globals.boot): Likewise.
(sys-constants.boot): Likewise.
* Makefile.in: Regenerate.
Diffstat (limited to 'src/interp')
-rw-r--r-- | src/interp/ChangeLog | 8 | ||||
-rw-r--r-- | src/interp/Makefile.in | 21 | ||||
-rw-r--r-- | src/interp/Makefile.pamphlet | 21 |
3 files changed, 8 insertions, 42 deletions
diff --git a/src/interp/ChangeLog b/src/interp/ChangeLog index ea36e41f..46e7e879 100644 --- a/src/interp/ChangeLog +++ b/src/interp/ChangeLog @@ -1,5 +1,13 @@ 2007-09-05 Gabriel Dos Reis <gdr@cs.tamu.edu> + * Makefile.pamphlet (boot-pkg.lisp): Remove rule. + (diagnostics.boot): Likewise. + (sys-globals.boot): Likewise. + (sys-constants.boot): Likewise. + * Makefile.in: Regenerate. + +2007-09-05 Gabriel Dos Reis <gdr@cs.tamu.edu> + * bookvol5.pamphlet (getenviron): Remove. 2007-09-05 Gabriel Dos Reis <gdr@cs.tamu.edu> diff --git a/src/interp/Makefile.in b/src/interp/Makefile.in index 9567360f..07aaecc9 100644 --- a/src/interp/Makefile.in +++ b/src/interp/Makefile.in @@ -335,8 +335,6 @@ depsys_objects = nocompil.$(FASLEXT) bookvol5.$(FASLEXT) g-error.$(FASLEXT) \ fnewmeta.$(FASLEXT) clam.$(FASLEXT) \ slam.$(FASLEXT) g-boot.$(FASLEXT) c-util.$(FASLEXT) \ g-util.$(FASLEXT) -VPATH = - ${DEPSYS}: vmlisp.$(FASLEXT) \ @@ -452,25 +450,6 @@ ggreater.$(FASLEXT): ggreater.lisp vmlisp.$(FASLEXT) vmlisp.$(FASLEXT): vmlisp.lisp $(BOOTSYS) -- --compile --output=$@ $< - -## GCL-2.6.8pre has the following behaviour that it will -## try to forcefully put the compiled code in the same directory -## as the source. This is hardly what we want, especially when -## the source file reside in non-writeable areas. Consequently, -## we copy the source file to the current working directory -- -## until we find a better way to convince GCL to do the right thing. -boot-pkg.lisp: $(srcdir)/boot-pkg.lisp - cp $< $@ - -diagnostics.boot: $(srcdir)/diagnostics.boot - cp $< $@ - -sys-globals.boot: $(srcdir)/sys-globals.boot - cp $< $@ - -sys-constants.boot: $(srcdir)/sys-constants.boot - cp $< $@ - .PHONY: all-axiomsys all-axiomsys: ${AXIOMSYS} diff --git a/src/interp/Makefile.pamphlet b/src/interp/Makefile.pamphlet index ac9fd061..0df0d71d 100644 --- a/src/interp/Makefile.pamphlet +++ b/src/interp/Makefile.pamphlet @@ -976,8 +976,6 @@ depsys_objects = nocompil.$(FASLEXT) bookvol5.$(FASLEXT) g-error.$(FASLEXT) \ fnewmeta.$(FASLEXT) clam.$(FASLEXT) \ slam.$(FASLEXT) g-boot.$(FASLEXT) c-util.$(FASLEXT) \ g-util.$(FASLEXT) -VPATH = - ${DEPSYS}: vmlisp.$(FASLEXT) \ @@ -1092,25 +1090,6 @@ ggreater.$(FASLEXT): ggreater.lisp vmlisp.$(FASLEXT) vmlisp.$(FASLEXT): vmlisp.lisp $(BOOTSYS) -- --compile --output=$@ $< - -## GCL-2.6.8pre has the following behaviour that it will -## try to forcefully put the compiled code in the same directory -## as the source. This is hardly what we want, especially when -## the source file reside in non-writeable areas. Consequently, -## we copy the source file to the current working directory -- -## until we find a better way to convince GCL to do the right thing. -boot-pkg.lisp: $(srcdir)/boot-pkg.lisp - cp $< $@ - -diagnostics.boot: $(srcdir)/diagnostics.boot - cp $< $@ - -sys-globals.boot: $(srcdir)/sys-globals.boot - cp $< $@ - -sys-constants.boot: $(srcdir)/sys-constants.boot - cp $< $@ - @ \section{Building SAVESYS and AXIOMSYS} |