[cfe-dev] Doxygen

Daniel Dunbar daniel at zuster.org
Mon Aug 11 16:58:01 PDT 2008


Well, this unbreaks the build at least. It still doesn't really work since it just
clobbers the LLVM installed files. Perhaps we should create a clang subdir
and write into that?

 - Daniel


----- Original Message ----
From: Mike Stump <mrs at apple.com>
To: Daniel Dunbar <daniel at zuster.org>
Cc: cfe-dev at cs.uiuc.edu
Sent: Monday, August 11, 2008 4:08:11 PM
Subject: Re: [cfe-dev] Doxygen

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