aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-08-04 11:54:10 +0000
committerdos-reis <gdr@axiomatics.org>2008-08-04 11:54:10 +0000
commit9be80497b8fe2bdfab08fded15e148c1489cc1d5 (patch)
tree42f751e4b7f3beb1b29b5da556663f2b9431c195 /src/Makefile.pamphlet
parent73151fa381c122cbaa7a32e2baf14b9e731d6791 (diff)
downloadopen-axiom-9be80497b8fe2bdfab08fded15e148c1489cc1d5.tar.gz
* Makefile.pamphlet: Use $(mkdir_p) in lieu of $(mkinstalldirs),
during build. Also use 'cp -p' instead of $(INSTALL). * algebra/Makefile.pamphlet: Likewise. * graph/Makefile.in: Likewise. * boot/Makefile.in: Likewise. * hyper/Makefile.in: Likewise. * input/Makefile.pamphlet: Likewise. * interp/Makefile.pamphlet: Likewise. * lib/Makefile.in: Likewise. * lisp/Makefile.in: Likewise. * share/Makefile.in: Likewise.
Diffstat (limited to 'src/Makefile.pamphlet')
-rw-r--r--src/Makefile.pamphlet14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Makefile.pamphlet b/src/Makefile.pamphlet
index 0b9b2275..f7a0d007 100644
--- a/src/Makefile.pamphlet
+++ b/src/Makefile.pamphlet
@@ -56,7 +56,7 @@ The {\bf clef} directory contains an Axiom command that works similar
to GNU Readline.
<<clefdir>>=
all-clef: all-lib
- @$(mkinstalldirs) $(axiom_target_bindir)
+ @$(mkdir_p) "$(axiom_target_bindir)"
cd clef && ${MAKE}
@
@@ -66,8 +66,8 @@ Superman (\Tool{sman}) is the master process that runs all of the other
processes including \Tool{axiom}, \Tool{clef}, nagman, graphics, and hyperdoc
<<smandir>>=
all-sman: all-lib all-driver
- $(mkinstalldirs) $(axiom_target_bindir)
- $(mkinstalldirs) $(axiom_target_libdir)
+ $(mkdir_p) "$(axiom_target_bindir)"
+ $(mkdir_p) "$(axiom_target_libdir)"
cd sman && ${MAKE}
@
@@ -76,8 +76,8 @@ all-sman: all-lib all-driver
Hyperdoc is the Axiom document browser.
<<hyperdir>>=
all-hyper: all-lib
- $(mkinstalldirs) $(axiom_target_bindir)
- $(mkinstalldirs) $(axiom_target_datadir)
+ $(mkdir_p) "$(axiom_target_bindir)"
+ $(mkdir_p) "$(axiom_target_datadir)"
cd hyper && ${MAKE}
@
@@ -88,7 +88,7 @@ system.
<<sharedir>>=
all-share:
- $(mkinstalldirs) $(axiom_target_libdir)
+ $(mkdir_p) "$(axiom_target_libdir)"
cd share && ${MAKE}
@
@@ -175,7 +175,7 @@ the normal Makefile information.
<<algebradir>>=
all-algebra: all-interpsys all-share all-hyper-pre
- @ $(mkinstalldirs) algebra/strap
+ @ $(mkdir_p) algebra/strap
cd algebra && ${MAKE}
all-hyper-pre: all-lib