[llvm-commits] [llvm] r48985 - /llvm/trunk/docs/Makefile
Gordon Henriksen
gordonhenriksen at mac.com
Mon Mar 31 10:27:57 PDT 2008
Author: gordon
Date: Mon Mar 31 12:27:57 2008
New Revision: 48985
URL: http://llvm.org/viewvc/llvm-project?rev=48985&view=rev
Log:
Add a unified 'generated documentation' target so the web site script has a consistent target to use.
Modified:
llvm/trunk/docs/Makefile
Modified: llvm/trunk/docs/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Makefile?rev=48985&r1=48984&r2=48985&view=diff
==============================================================================
--- llvm/trunk/docs/Makefile (original)
+++ llvm/trunk/docs/Makefile Mon Mar 31 12:27:57 2008
@@ -31,7 +31,7 @@
doxygen.intro
EXTRA_DIST := $(HTML) $(DOXYFILES) llvm.css CommandGuide img
-.PHONY: install-html install-doxygen doxygen install-ocamldoc ocamldoc
+.PHONY: install-html install-doxygen doxygen install-ocamldoc ocamldoc generated
install_targets := install-html
ifeq ($(ENABLE_DOXYGEN),1)
@@ -42,6 +42,10 @@
endif
install-local:: $(install_targets)
+# Live documentation is generated for the web site using this target:
+# 'make generated BUILD_FOR_WEBSITE=1'
+generated:: doxygen ocamldoc
+
install-html: $(PROJ_OBJ_DIR)/html.tar.gz
$(Echo) Installing HTML documentation
$(Verb) $(MKDIR) $(PROJ_docsdir)/html
More information about the llvm-commits
mailing list