From 91b56f6542583df33b0a8184bb11ea3b9fa75184 Mon Sep 17 00:00:00 2001 From: Gregory Maxwell <greg@xiph.org> Date: Mon, 11 Jun 2012 13:33:35 -0400 Subject: [PATCH] Fixup paths in doc/ --- doc/Doxyfile.in | 8 ++++---- doc/Makefile.am | 7 +++++-- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index ceecb0169..328a06e84 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -840,13 +840,13 @@ HTML_FILE_EXTENSION = .html # that header. Note that the header is subject to change so you typically # have to redo this when upgrading to a newer version of doxygen or when changing the value of configuration settings such as GENERATE_TREEVIEW! -HTML_HEADER = header.html +HTML_HEADER = @top_srcdir@/doc/header.html # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. -HTML_FOOTER = footer.html +HTML_FOOTER = @top_srcdir@/doc/footer.html # If the HTML_TIMESTAMP tag is set to YES then the generated HTML documentation will contain the timesstamp. @@ -859,7 +859,7 @@ HTML_TIMESTAMP = NO # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! -HTML_STYLESHEET = customdoxygen.css +HTML_STYLESHEET = @top_srcdir@/doc/customdoxygen.css # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note @@ -868,7 +868,7 @@ HTML_STYLESHEET = customdoxygen.css # files. In the HTML_STYLESHEET file, use the file name only. Also note that # the files will be copied as-is; there are no commands or markers available. -HTML_EXTRA_FILES = opus_logo.svg +HTML_EXTRA_FILES = @top_srcdir@/doc/opus_logo.svg # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. # Doxygen will adjust the colors in the stylesheet and background images diff --git a/doc/Makefile.am b/doc/Makefile.am index 11edd159a..1c3406203 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -4,9 +4,12 @@ DOCINPUTS = $(top_srcdir)/include/opus.h \ $(top_srcdir)/include/opus_multistream.h \ $(top_srcdir)/include/opus_defines.h \ $(top_srcdir)/include/opus_types.h \ - $(top_srcdir)/include/opus_custom.h + $(top_srcdir)/include/opus_custom.h \ + $(top_srcdir)/doc/header.html \ + $(top_srcdir)/doc/footer.html \ + $(top_srcdir)/doc/customdoxygen.css -EXTRA_DIST = Doxyfile.in +EXTRA_DIST = Doxyfile.in opus_logo.svg all-local: doxygen-build.stamp -- GitLab