diff options
author | dos-reis <gdr@axiomatics.org> | 2008-02-03 02:20:31 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-02-03 02:20:31 +0000 |
commit | 1c83037d80bd0d06af63343e116d4bd21b67da8b (patch) | |
tree | 48f83313ce190a827a08e179a0061e6bb09b100e /src/interp/Makefile.pamphlet | |
parent | 7827db4dfa2974604baf823caf3f8be7d8e22d9d (diff) | |
download | open-axiom-1c83037d80bd0d06af63343e116d4bd21b67da8b.tar.gz |
* interp/msgdb.boot ($MARG): Define.
* interp/int-top.boot (intloopReadConsole): Remove code for
$DALYMODE.
* interp/define.boot ($NRTopt): Define.
($suffix): Likewise.
* interp/debug.lisp (S-SPADKEY): Define.
* interp/Makefile.pamphlet (OBJS): Don't include setq.$(FASLEXT).
(setq.$(FASLEXT)): Remove rule.
* interp/setq.lisp: Remove.
Diffstat (limited to 'src/interp/Makefile.pamphlet')
-rw-r--r-- | src/interp/Makefile.pamphlet | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/interp/Makefile.pamphlet b/src/interp/Makefile.pamphlet index fb113b3d..b5a644e3 100644 --- a/src/interp/Makefile.pamphlet +++ b/src/interp/Makefile.pamphlet @@ -104,9 +104,7 @@ loaded into a clean lisp image ({\bf LOADSYS}) and saved as a runnable \Tool{OpenAxiom} interpreter ({\bf SAVESYS}) usually named \Tool{interpsys}. Most of these files are translated from Boot to Common Lisp and then -compiled. The \File{setq.lisp} -file contains constant initialization code which gains nothing -by being compiled. +compiled. \subsection{The Spad interpreter and compiler} @@ -114,7 +112,7 @@ by being compiled. OBJS= vmlisp.$(FASLEXT) hash.$(FASLEXT) \ diagnostics.$(FASLEXT) sys-driver.$(FASLEXT) \ macros.$(FASLEXT) \ - unlisp.$(FASLEXT) setq.$(FASLEXT) \ + unlisp.$(FASLEXT) \ astr.$(FASLEXT) bits.$(FASLEXT) \ alql.$(FASLEXT) buildom.$(FASLEXT) \ cattable.$(FASLEXT) \ @@ -945,9 +943,6 @@ obey.$(FASLEXT): obey.lisp macros.$(FASLEXT) daase.$(FASLEXT): daase.lisp macros.$(FASLEXT) foam_l.$(FASLEXT) $(BOOTSYS) -- --compile --output=$@ --load-directory=. $< -setq.$(FASLEXT): setq.lisp macros.$(FASLEXT) - $(BOOTSYS) -- --compile --output=$@ --load-directory=. $< - spaderror.$(FASLEXT): spaderror.lisp macros.$(FASLEXT) $(BOOTSYS) -- --compile --output=$@ --load-directory=. $< |