[llvm-commits] [llvm] r142125 - /llvm/trunk/docs/tutorial/Makefile

Bill Wendling isanbard at gmail.com
Sun Oct 16 01:24:30 PDT 2011


Author: void
Date: Sun Oct 16 03:24:30 2011
New Revision: 142125

URL: http://llvm.org/viewvc/llvm-project?rev=142125&view=rev
Log:
Install the PNG file as well. PR4780.

Modified:
    llvm/trunk/docs/tutorial/Makefile

Modified: llvm/trunk/docs/tutorial/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/Makefile?rev=142125&r1=142124&r2=142125&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/Makefile (original)
+++ llvm/trunk/docs/tutorial/Makefile Sun Oct 16 03:24:30 2011
@@ -11,6 +11,7 @@
 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 @@
 	$(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::





More information about the llvm-commits mailing list