summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Maxwell <greg@xiph.org>2012-06-11 13:33:35 -0400
committerGregory Maxwell <greg@xiph.org>2012-06-11 13:33:35 -0400
commit91b56f6542583df33b0a8184bb11ea3b9fa75184 (patch)
treefcd0384fb361248080a47c2ece0c81ffcc05606c
parent595b334f2600fe3a210e5ea2934500329321cb7d (diff)
downloadopus-91b56f6542583df33b0a8184bb11ea3b9fa75184.tar.gz
Fixup paths in doc/
-rw-r--r--doc/Doxyfile.in8
-rw-r--r--doc/Makefile.am7
2 files changed, 9 insertions, 6 deletions
diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in
index ceecb016..328a06e8 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 11edd159..1c340620 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