diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2011-11-18 12:17:50 +0000 |
---|---|---|
committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2014-09-26 16:31:26 +0200 |
commit | 3a5a1c46404354f3a8911149f65c568a3166395c (patch) | |
tree | 99fcbafe24ad49d030b5005669b4492dcfdc1513 /doc | |
parent | e5d6c49c54ed7f6e1dacf9bafaae8fa0ba88db5d (diff) | |
download | libva-3a5a1c46404354f3a8911149f65c568a3166395c.tar.gz |
doc: don't add timestamps in generated documentation.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Doxyfile | 2 | ||||
-rw-r--r-- | doc/Makefile.am | 9 | ||||
-rw-r--r-- | doc/va_footer.html | 4 |
3 files changed, 10 insertions, 5 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile index 4fb3a8c..03b44d8 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -824,7 +824,7 @@ HTML_HEADER = # each generated HTML page. If it is left blank doxygen will generate a # standard footer. -HTML_FOOTER = +HTML_FOOTER = $(VA_HTML_FOOTER) # The HTML_STYLESHEET tag can be used to specify a user-defined cascading # style sheet that is used by each HTML page. It can be used to diff --git a/doc/Makefile.am b/doc/Makefile.am index 052b863..aaedcc2 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -31,9 +31,13 @@ VA_HEADER_DIR = $(top_srcdir)/va VA_HEADER_FILES = \ $(NULL) +VA_HTML_FOOTER = va_footer.html +VA_HTML_FRAGMENTS = $(VA_HTML_FOOTER) + export VA_HEADER_DIR export VA_HEADER_FILES -html-out/index.html: Doxyfile $(VA_HEADER_FILES) +export VA_HTML_FOOTER +html-out/index.html: Doxyfile $(VA_HEADER_FILES) $(VA_HTML_FRAGMENTS) $(DOXYGEN) $< if ENABLE_DOCS @@ -52,8 +56,5 @@ uninstall-local: rm -rf $(DESTDIR)$(docdir)/html endif -clean-local: - rm -rf html-out - # Extra clean files so that maintainer-clean removes *everything* MAINTAINERCLEANFILES = Makefile.in diff --git a/doc/va_footer.html b/doc/va_footer.html new file mode 100644 index 0000000..9f1875c --- /dev/null +++ b/doc/va_footer.html @@ -0,0 +1,4 @@ +<hr class="footer"/><address class="footer"><small> +Generated for $projectname by <a href="http://www.doxygen.org/index.html"><img class="footer" src="$relpath$doxygen.png" alt="doxygen"/></a> $doxygenversion</small></address> +</body> +</html> |