aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-09-19 15:30:04 +0000
committerdos-reis <gdr@axiomatics.org>2007-09-19 15:30:04 +0000
commit1d71a43cca77e1576cc1568298d5886a60c9b884 (patch)
tree270a5e091dc621fd0023f2261938cea235b0cbe9 /src/Makefile.pamphlet
parent1ee7a0030053e2447302d8157b9d3356a54e9b3a (diff)
downloadopen-axiom-1d71a43cca77e1576cc1568298d5886a60c9b884.tar.gz
2007-09-19 Gabriel Dos Reis <gdr@cs.tamu.edu>
* Makefile.pamphlet (all-interpsys): Now depend on all-depsys. src/interp/ 2007-09-19 Gabriel Dos Reis <gdr@cs.tamu.edu> * util.lisp.pamphlet ($directory-list): Move to sys-globals.boot. ($library-directory-list): Likewise. * spad.lisp.pamphlet: Import "bootlex". * preparse.lisp.pamphlet: Import "fnewmeta". * postprop.lisp: Import "macros". * postpar.boot.pamphlet: Import "postprop". * nlib.lisp.pamphlet (rdefiostream): Define unconditionally. (get-io-index-stream): Likewise. (makedir): Likewise. (get-directory-list): Don't use $current-diretory. ($filetype-table): Move to sys-constants.boot. * patches.lisp.pamphlet ($current-directory): Remove. (|cd|): Simplify implementation. * newaux.lisp.pamphlet: Import "macros". (|PARSE-NewKEY|): Define. * metalex.lisp: Move various file, line, stack, character utilities to here. * macros.lisp.pamphlet (NREVERSE0): Move to sys-macros.lisp. Tidy. * fnewmeta.lisp.pamphlet: Import "parsing". * comp.lisp: Import "macros". * def.lisp: Likewise. (B-MDEF): Fix thinko. * bootlex.lisp: Import "preparse", "def", and "nlib". (BOOT-LINE-STACK): Move to metalex.lisp. (NEXT-LINES-CLEAR): Likewise. (NEXT-LINES-SHOW): Likewise. (XCAPE): Likewise. (KEYWORDS): Likewise. * Makefile.pamphlet (${DEPSYS}): Now have all Lisp in compiled form and load them. * bookvol5.pamphlet ($current-directory): Remove.
Diffstat (limited to 'src/Makefile.pamphlet')
-rw-r--r--src/Makefile.pamphlet10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Makefile.pamphlet b/src/Makefile.pamphlet
index 4a8636b2..b6514576 100644
--- a/src/Makefile.pamphlet
+++ b/src/Makefile.pamphlet
@@ -141,7 +141,11 @@ same Makefile.
all-depsys: all-boot
cd interp && $(MAKE) all-depsys
-all-interpsys: all-depsys all-lisp
+ifeq (@axiom_use_x@,yes)
+all-interpsys: all-depsys all-hyper
+else
+all-interpsys: all-depsys
+endif
cd interp && ${MAKE} all-interpsys
all-axiomsys: all-asq
@@ -191,11 +195,7 @@ steps. The first step uses the [[document]] command to extract
the normal Makefile information.
<<algebradir>>=
-ifeq (@axiom_use_x@,yes)
-all-algebra: all-interpsys all-share all-hyper
-else
all-algebra: all-interpsys all-share
-endif
@ $(mkinstalldirs) algebra/strap
cd algebra && ${MAKE}
@