diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Doxyfile.in (renamed from doc/Doxyfile) | 6 | ||||
-rw-r--r-- | doc/Makefile.am | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile.in index 8b3453e..c6f4f4a 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile.in @@ -874,7 +874,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = ../src/tuberia.h +INPUT = @srcdir@/../src/tuberia.h # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -1194,7 +1194,7 @@ GENERATE_HTML = YES # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_OUTPUT = doxygen_html +HTML_OUTPUT = @builddir@/doxygen_html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). @@ -2067,7 +2067,7 @@ GENERATE_MAN = YES # The default directory is: man. # This tag requires that the tag GENERATE_MAN is set to YES. -MAN_OUTPUT = doxygen_man +MAN_OUTPUT = @builddir@/doxygen_man # The MAN_EXTENSION tag determines the extension that is added to the generated # man pages. In case the manual section does not start with a number, the number diff --git a/doc/Makefile.am b/doc/Makefile.am index 0f61643..4262876 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,10 +1,8 @@ -EXTRA_DIST = Doxyfile - if DOXYGEN doc_DATA = doxygen_html.tar man3_MANS = doxygen_man/man3/tuberia.h.3 -doxygen_html doxygen_man/man3/tuberia.h.3 &: Doxyfile ../src/tuberia.h +doxygen_html doxygen_man/man3/tuberia.h.3 &: Doxyfile $(srcdir)/../src/tuberia.h doxygen Doxyfile doxygen_html.tar: doxygen_html |