comparison Makefile.am @ 20912:f34539eb7a61

Add some xsl magic to generate a .devhelp index from doxygen's XML output, allowing the documentation to be viewed in Devhelp. It's not perfect --- there are some broken links and the transformation is a bit fragile --- but works well enough to be useful.
author Will Thompson <will.thompson@collabora.co.uk>
date Sat, 13 Oct 2007 15:44:43 +0000
parents 4c26b23e7859
children a97f24eda509
comparison
equal deleted inserted replaced
20910:54d232b52607 20912:f34539eb7a61
46 46
47 docs: Doxyfile 47 docs: Doxyfile
48 if HAVE_DOXYGEN 48 if HAVE_DOXYGEN
49 @echo "Running doxygen..." 49 @echo "Running doxygen..."
50 @doxygen 50 @doxygen
51 if HAVE_XSLTPROC
52 @echo "Generating devhelp index..."
53 @xsltproc doxy2devhelp.xsl doc/xml/index.xml > doc/html/pidgin.devhelp
54 @echo "(Symlink doc/html to ~/.local/share/gtk-doc/html/pidgin to make devhelp see the documentation)"
55 else
56 @echo "Not generating devhelp index: xsltproc was not found by configure"
57 endif
51 else 58 else
52 @echo "doxygen was not found during configure. Aborting." 59 @echo "doxygen was not found during configure. Aborting."
53 @echo; 60 @echo;
54 endif 61 endif
55 62