diff options
author | dos-reis <gdr@axiomatics.org> | 2008-05-23 12:19:54 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-05-23 12:19:54 +0000 |
commit | a01e08564facbeadccd3c09b719358af5a148d4f (patch) | |
tree | f65ece17467ea2c965e6f8d28d71bd5b968981fc /src/Makefile.pamphlet | |
parent | 9f15b051f26f570a820943fd075e8636093ae9ae (diff) | |
download | open-axiom-a01e08564facbeadccd3c09b719358af5a148d4f.tar.gz |
Fix breakage from last commits.
Diffstat (limited to 'src/Makefile.pamphlet')
-rw-r--r-- | src/Makefile.pamphlet | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Makefile.pamphlet b/src/Makefile.pamphlet index bff65b35..0b9b2275 100644 --- a/src/Makefile.pamphlet +++ b/src/Makefile.pamphlet @@ -124,7 +124,7 @@ all-boot: all-lisp Once \Tool{bootsys} exists we need to build \Tool{interpsys}. <<interpdir>>= -all-interpsys: all-boot all-hyper +all-interpsys: all-boot all-hyper-pre cd interp && ${MAKE} all-interpsys all-axiomsys: all-asq @@ -174,9 +174,12 @@ steps. The first step uses the [[document]] command to extract the normal Makefile information. <<algebradir>>= -all-algebra: all-interpsys all-share +all-algebra: all-interpsys all-share all-hyper-pre @ $(mkinstalldirs) algebra/strap cd algebra && ${MAKE} + +all-hyper-pre: all-lib + cd hyper && $(MAKE) all-hyper-pre @ \subsection{The \File{input/} directory} @@ -208,8 +211,11 @@ The \Tool{asq} \cite{2} command, contained in this directory, is useful for finding detailed information about domains, packages, and categories from the shell without running Axiom. <<etcdir>>= -all-asq: all-algebra +all-asq: all-hyper-post cd etc && ${MAKE} + +all-hyper-post: all-algebra + cd hyper && $(MAKE) all-hyper-post @ \subsection{The \File{doc/} directory} |