diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-10-16 08:24:30 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-10-16 08:24:30 +0000 |
commit | 3fafe6d3f8691cf7dfe68d9431f8e4ab357389b7 (patch) | |
tree | 5289744394b1b70653f1dc9440e13542e6cf1af0 | |
parent | 01e554f905bede8d4d5bc73d7d66356ab7da6a5a (diff) | |
download | bcm5719-llvm-3fafe6d3f8691cf7dfe68d9431f8e4ab357389b7.tar.gz bcm5719-llvm-3fafe6d3f8691cf7dfe68d9431f8e4ab357389b7.zip |
Install the PNG file as well. PR4780.
llvm-svn: 142125
-rw-r--r-- | llvm/docs/tutorial/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/docs/tutorial/Makefile b/llvm/docs/tutorial/Makefile index 9082ad4d857..fdf1bb68a72 100644 --- a/llvm/docs/tutorial/Makefile +++ b/llvm/docs/tutorial/Makefile @@ -11,6 +11,7 @@ LEVEL := ../.. include $(LEVEL)/Makefile.common HTML := $(wildcard $(PROJ_SRC_DIR)/*.html) +PNG := $(wildcard $(PROJ_SRC_DIR)/*.png) EXTRA_DIST := $(HTML) index.html HTML_DIR := $(DESTDIR)$(PROJ_docsdir)/html/tutorial @@ -18,6 +19,7 @@ install-local:: $(HTML) $(Echo) Installing HTML Tutorial Documentation $(Verb) $(MKDIR) $(HTML_DIR) $(Verb) $(DataInstall) $(HTML) $(HTML_DIR) + $(Verb) $(DataInstall) $(PNG) $(HTML_DIR) $(Verb) $(DataInstall) $(PROJ_SRC_DIR)/index.html $(HTML_DIR) uninstall-local:: |