From 9be80497b8fe2bdfab08fded15e148c1489cc1d5 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Mon, 4 Aug 2008 11:54:10 +0000 Subject: * 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. --- src/Makefile.pamphlet | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/Makefile.pamphlet') 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. <>= 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 <>= 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. <>= 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. <>= all-share: - $(mkinstalldirs) $(axiom_target_libdir) + $(mkdir_p) "$(axiom_target_libdir)" cd share && ${MAKE} @ @@ -175,7 +175,7 @@ the normal Makefile information. <>= all-algebra: all-interpsys all-share all-hyper-pre - @ $(mkinstalldirs) algebra/strap + @ $(mkdir_p) algebra/strap cd algebra && ${MAKE} all-hyper-pre: all-lib -- cgit v1.2.3