[cfe-dev] Doxygen
Mike Stump
mrs at apple.com
Mon Aug 11 16:08:11 PDT 2008
On Jul 26, 2008, at 4:52 PM, Daniel Dunbar wrote:
> Configuration files for doxygen have been committed into clang/docs
> and Chris has wired it up to http://clang.llvm.org/doxygen/
Hum, this seems to break make install for clang. :-(
The below fixes it. I'm not sure what this does to the web site dox
build.
Ok?
Doing diffs in .:
--- ./docs/Makefile.~1~ 2008-08-11 14:56:59.000000000 -0700
+++ ./docs/Makefile 2008-08-11 16:00:24.000000000 -0700
@@ -26,7 +26,7 @@ include $(LEVEL)/Makefile.common
HTML := $(wildcard $(PROJ_SRC_DIR)/*.html) \
$(wildcard $(PROJ_SRC_DIR)/*.css)
-IMAGES := $(wildcard $(PROJ_SRC_DIR)/img/*.*)
+#IMAGES := $(wildcard $(PROJ_SRC_DIR)/img/*.*)
DOXYFILES := doxygen.cfg.in doxygen.css doxygen.footer
doxygen.header \
doxygen.intro
EXTRA_DIST := $(HTML) $(DOXYFILES) llvm.css CommandGuide img
@@ -48,7 +48,7 @@ install-html: $(PROJ_OBJ_DIR)/html.tar.g
$(Verb) $(MKDIR) $(PROJ_docsdir)/html
$(Verb) $(MKDIR) $(PROJ_docsdir)/html/img
$(Verb) $(DataInstall) $(HTML) $(PROJ_docsdir)/html
- $(Verb) $(DataInstall) $(IMAGES) $(PROJ_docsdir)/html/img
+# $(Verb) $(DataInstall) $(IMAGES) $(PROJ_docsdir)/html/img
$(Verb) $(DataInstall) $(PROJ_OBJ_DIR)/html.tar.gz $(PROJ_docsdir)
$(PROJ_OBJ_DIR)/html.tar.gz: $(HTML)
--------------
More information about the cfe-dev
mailing list