From: Hans U. N. <hu...@us...> - 2007-05-21 18:34:00
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13614/doc Modified Files: Doxyfile-internals.in Makefile.am Log Message: 0.6.14.cvs2. Call graphs for internal docs, only build them when --enable-internal-docs Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -d -r1.8 -r1.9 --- Makefile.am 10 May 2007 15:46:55 -0000 1.8 +++ Makefile.am 21 May 2007 18:33:56 -0000 1.9 @@ -2,11 +2,21 @@ # Conditional rules, depending on tool availability ######################################################################## +DOXYGEN_FILES = +DOXYGEN_STAMPS = +DOXYGEN_UPLOAD = + if HAVE_DOXYGEN -DOXYGEN_FILES = -DOXYGEN_STAMPS = $(HTML_APIDOC_DIR).stamp $(HTML_APIDOC_INTERNALS_DIR).stamp $(DOXYGEN_OUTPUT_DIR).stamp -DOXYGEN_UPLOAD = $(HTML_APIDOC_DIR).uploaded $(HTML_APIDOC_INTERNALS_DIR).uploaded +DOXYGEN_STAMPS += $(HTML_APIDOC_DIR).stamp +DOXYGEN_UPLOAD += $(HTML_APIDOC_DIR).uploaded + +if ENABLE_INTERNAL_DOCS +DOXYGEN_STAMPS += $(HTML_APIDOC_INTERNALS_DIR).stamp +DOXYGEN_UPLOAD += $(HTML_APIDOC_INTERNALS_DIR).uploaded +endif + +DOXYGEN_STAMPS += $(DOXYGEN_OUTPUT_DIR).stamp # FIXME: Depending on the source files would be sufficient... $(HTML_APIDOC_DIR).stamp: Doxyfile $(top_builddir)/libexif/libexif.la @@ -43,11 +53,11 @@ install-apidocs: $(HTML_APIDOC_DIR).stam $(INSTALL) -m 0644 $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_DIR)/* $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML)/ uninstall-apidocs-internals: - rm -f $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML)/* + cd $(DESTDIR)$(docdir) && rm -f $(DOC_APIDOC_INTERNALS_HTML)/* rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML) uninstall-apidocs: - rm -f $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML)/* + cd $(DESTDIR)$(docdir) && rm -f $(DOC_APIDOC_HTML)/* rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML) clean-apidocs: Index: Doxyfile-internals.in =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Doxyfile-internals.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- Doxyfile-internals.in 21 May 2007 14:24:57 -0000 1.4 +++ Doxyfile-internals.in 21 May 2007 18:33:56 -0000 1.5 @@ -1122,7 +1122,7 @@ INCLUDED_BY_GRAPH = YES # So in most cases it will be better to enable call graphs for selected # functions only using the \callgraph command. -CALL_GRAPH = NO +CALL_GRAPH = YES # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. |