aboutsummaryrefslogtreecommitdiffstats
path: root/docs/CommandGuide
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-02-24 21:28:08 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-02-24 21:28:08 +0000
commit29fbdd705acfc05f75707e218dba5b40b9a3f2bb (patch)
tree388b48e9dc88daf12970f32ed4617de6b17ea51a /docs/CommandGuide
parent753b113cdf94c5f1abaa3b9c329a7fd18cd2fac9 (diff)
downloadexternal_llvm-29fbdd705acfc05f75707e218dba5b40b9a3f2bb.zip
external_llvm-29fbdd705acfc05f75707e218dba5b40b9a3f2bb.tar.gz
external_llvm-29fbdd705acfc05f75707e218dba5b40b9a3f2bb.tar.bz2
For PR528:
Use the DataInstall and MKDIR macros instead of using $(INSTALL) directly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20318 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CommandGuide')
-rw-r--r--docs/CommandGuide/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/CommandGuide/Makefile b/docs/CommandGuide/Makefile
index bc0d83f..411bbfe 100644
--- a/docs/CommandGuide/Makefile
+++ b/docs/CommandGuide/Makefile
@@ -79,16 +79,16 @@ PS_DIR := $(PROJ_docsdir)/ps
install-local:: $(HTML) $(MAN) $(PS)
$(Echo) Installing HTML CommandGuide Documentation
- $(Verb) $(INSTALL) -d $(HTML_DIR)
- $(Verb) $(INSTALL) -C $(HTML) $(HTML_DIR)
- $(Verb) $(INSTALL) -C $(PROJ_SRC_DIR)/index.html $(HTML_DIR)
- $(Verb) $(INSTALL) -C $(PROJ_SRC_DIR)/manpage.css $(HTML_DIR)
+ $(Verb) $(MKDIR) $(HTML_DIR)
+ $(Verb) $(DataInstall) $(HTML) $(HTML_DIR)
+ $(Verb) $(DataInstall) $(PROJ_SRC_DIR)/index.html $(HTML_DIR)
+ $(Verb) $(DataInstall) -C $(PROJ_SRC_DIR)/manpage.css $(HTML_DIR)
$(Echo) Installing MAN CommandGuide Documentation
- $(Verb) $(INSTALL) -d $(MAN_DIR)
- $(Verb) $(INSTALL) -C $(MAN) $(MAN_DIR)
+ $(Verb) $(MKDIR) $(MAN_DIR)
+ $(Verb) $(DataInstall) $(MAN) $(MAN_DIR)
$(Echo) Installing PS CommandGuide Documentation
- $(Verb) $(INSTALL) -d $(PS_DIR)
- $(Verb) $(INSTALL) -C $(PS) $(PS_DIR)
+ $(Verb) $(MKDIR) $(PS_DIR)
+ $(Verb) $(DataInstall) $(PS) $(PS_DIR)
uninstall-local::
$(Echo) Uninstalling Documentation