diff options
author | dos-reis <gdr@axiomatics.org> | 2007-09-12 22:34:35 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-09-12 22:34:35 +0000 |
commit | 85b24b09dc2103e0d44b043c85f29bb26272a9ef (patch) | |
tree | 09d209066481cd0d8bf48e8eedf358946eb455b9 /src/interp | |
parent | edc726b51cc48c0a1f9241fa159f85d512e98968 (diff) | |
download | open-axiom-85b24b09dc2103e0d44b043c85f29bb26272a9ef.tar.gz |
* dq.boot: New.
* dq.boot.pamphlet: Move content to dq.boot.pamphlet. Remove.
* Makefile.pamphlet (dq.$(FASLEXT)): New rule.
Diffstat (limited to 'src/interp')
-rw-r--r-- | src/interp/ChangeLog | 3 | ||||
-rw-r--r-- | src/interp/Makefile.in | 4 | ||||
-rw-r--r-- | src/interp/Makefile.pamphlet | 4 | ||||
-rw-r--r-- | src/interp/dq.boot (renamed from src/interp/dq.boot.pamphlet) | 26 |
4 files changed, 15 insertions, 22 deletions
diff --git a/src/interp/ChangeLog b/src/interp/ChangeLog index 15318499..2246e539 100644 --- a/src/interp/ChangeLog +++ b/src/interp/ChangeLog @@ -1,6 +1,9 @@ 2007-09-12 Gabriel Dos Reis <gdr@cs.tamu.edu> + * dq.boot: New. + * dq.boot.pamphlet: Move content to dq.boot.pamphlet. Remove. * vmlisp.lisp.pamphlet (BPINAME): Define for SBCL. + * Makefile.pamphlet (dq.$(FASLEXT)): New rule. 2007-09-12 Gabriel Dos Reis <gdr@cs.tamu.edu> diff --git a/src/interp/Makefile.in b/src/interp/Makefile.in index 3f0fed26..0664b77a 100644 --- a/src/interp/Makefile.in +++ b/src/interp/Makefile.in @@ -477,6 +477,10 @@ database.date: $(AUTO)/%.$(FASLEXT): %.$(FASLEXT) $(INSTALL) $< $@ + +dq.$(FASLEXT): dq.boot boot-pkg.$(FASLEXT) + $(BOOTSYS) -- --compile --output=$@ --load-directory=. $< + as.clisp: as.boot @ echo 417 making $@ from $< @ echo '(progn (old-boot::boot "as.boot"))' | ${DEPSYS} diff --git a/src/interp/Makefile.pamphlet b/src/interp/Makefile.pamphlet index ad4d277d..a698508a 100644 --- a/src/interp/Makefile.pamphlet +++ b/src/interp/Makefile.pamphlet @@ -1972,6 +1972,10 @@ distclean-local: clean-local $(AUTO)/%.$(FASLEXT): %.$(FASLEXT) $(INSTALL) $< $@ + +dq.$(FASLEXT): dq.boot boot-pkg.$(FASLEXT) + $(BOOTSYS) -- --compile --output=$@ --load-directory=. $< + <<as.clisp>> <<ax.clisp>> diff --git a/src/interp/dq.boot.pamphlet b/src/interp/dq.boot index 1346ecc9..894e21cd 100644 --- a/src/interp/dq.boot.pamphlet +++ b/src/interp/dq.boot @@ -1,18 +1,7 @@ -\documentclass{article} -\usepackage{axiom} -\begin{document} -\title{\$SPAD/src/interp dq.boot} -\author{The Axiom Team} -\maketitle -\begin{abstract} -\end{abstract} -\eject -\tableofcontents -\eject -\section{License} -<<license>>= -- Copyright (c) 1991-2002, The Numerical ALgorithms Group Ltd. -- All rights reserved. +-- Copyright (C) 2007, Gabriel Dos Reis. +-- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are @@ -42,9 +31,8 @@ -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -@ -<<*>>= -<<license>> + +import '"boot-pkg" )package "BOOT" @@ -92,9 +80,3 @@ dqAddAppend(x,y)== RPLACD (CDR x,CAR y) RPLACD (x, CDR y) x -@ -\eject -\begin{thebibliography}{99} -\bibitem{1} nothing -\end{thebibliography} -\end{document} |