aboutsummaryrefslogtreecommitdiff
path: root/docs/tools
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-05-01 23:34:58 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-05-01 23:34:58 +0000
commit632975b0bec2ec3ff68a81b6e39e87d1968aa4d6 (patch)
tree88d59afdadbc64ff09a578327a8eed0c94ef401e /docs/tools
parent47f717788082cdc38b899faf18acc8d1cda1b9c5 (diff)
Make install target actually work, dependencies FTW.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70599 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tools')
-rw-r--r--docs/tools/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/tools/Makefile b/docs/tools/Makefile
index da99a1dfdf..c56c4f8983 100644
--- a/docs/tools/Makefile
+++ b/docs/tools/Makefile
@@ -85,18 +85,18 @@ HTML_DIR := $(PROJ_docsdir)/html/clang
MAN_DIR := $(PROJ_mandir)/man1
PS_DIR := $(PROJ_docsdir)/ps
-install-html::
+install-html:: $(HTML)
$(Echo) Installing HTML Clang Tools Documentation
$(Verb) $(MKDIR) $(HTML_DIR)
$(Verb) $(DataInstall) $(HTML) $(HTML_DIR)
$(Verb) $(DataInstall) $(PROJ_SRC_DIR)/manpage.css $(HTML_DIR)
-install-man::
+install-man:: $(MAN)
$(Echo) Installing MAN Clang Tools Documentation
$(Verb) $(MKDIR) $(MAN_DIR)
$(Verb) $(DataInstall) $(MAN) $(MAN_DIR)
-install-ps::
+install-ps:: $(PS)
$(Echo) Installing PS Clang Tools Documentation
$(Verb) $(MKDIR) $(PS_DIR)
$(Verb) $(DataInstall) $(PS) $(PS_DIR)