diff options
author | dos-reis <gdr@axiomatics.org> | 2007-11-26 05:04:27 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2007-11-26 05:04:27 +0000 |
commit | dab99d0f13838666c79ee4fdf65ae896f400dd6e (patch) | |
tree | 3ce76eae5148b13ead4155dab367b90aacf2c445 /src/Makefile.pamphlet | |
parent | 1bcc17d3ac7893cca17c04e74812c36acae2592e (diff) | |
download | open-axiom-dab99d0f13838666c79ee4fdf65ae896f400dd6e.tar.gz |
2007-11-25 Gabriel Dos Reis <gdr@cs.tamu.edu>
* Makefile.pamphlet: Remove all-depsys rule.
src/
2007-11-25 Gabriel Dos Reis <gdr@cs.tamu.edu>
* Makefile.pamphlet: Remove all-depsys rule.
(all-interpsys): Now depend on all-boot.
src/interp/
2007-11-25 Gabriel Dos Reis <gdr@cs.tamu.edu>
Remove depsys from OpenAxiom.
* Makefile.pamphlet: Remove references to depsys.
* macros.lisp (BRIGHPRINT): Remove.
(BRIGHPRINT-0): Likewise.
* util.lisp (build-depsys): Likewise.
(processSynonyms): Likewise.
Diffstat (limited to 'src/Makefile.pamphlet')
-rw-r--r-- | src/Makefile.pamphlet | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/Makefile.pamphlet b/src/Makefile.pamphlet index b6514576..f7cb6918 100644 --- a/src/Makefile.pamphlet +++ b/src/Makefile.pamphlet @@ -133,18 +133,13 @@ all-boot: all-lisp \subsection{The \File{interp/} directory} -Once \Tool{bootsys} exists we need to build \Tool{depsys} -and \Tool{interpsys}. Since these two images share a lot of -files they are built in the interp subdirectory using the -same Makefile. +Once \Tool{bootsys} exists we need to build +\Tool{interpsys}. <<interpdir>>= -all-depsys: all-boot - cd interp && $(MAKE) all-depsys - ifeq (@axiom_use_x@,yes) -all-interpsys: all-depsys all-hyper +all-interpsys: all-boot all-hyper else -all-interpsys: all-depsys +all-interpsys: all-boot endif cd interp && ${MAKE} all-interpsys |