diff options
author | Chase Douglas <chase.douglas@canonical.com> | 2012-07-25 11:23:55 -0700 |
---|---|---|
committer | Chase Douglas <chase.douglas@canonical.com> | 2012-07-26 13:41:32 -0700 |
commit | df38b963e17113afa6806b6c4110a7842e64bd31 (patch) | |
tree | cfb44af245282d31ade6169bd51dd11b126038f0 /doc | |
parent | 3fafcb6956779cbbbb0d1d4cadf4d7ea79671ef4 (diff) |
Fix doxygen run so it works with out-of-tree builds
Signed-off-by: Chase Douglas <chase.douglas@canonical.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Doxyfile.in (renamed from doc/Doxyfile) | 8 | ||||
-rw-r--r-- | doc/Makefile.am | 3 |
2 files changed, 4 insertions, 7 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile.in index 57dd553..357d429 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile.in @@ -665,8 +665,8 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = ../include \ - ../examples +INPUT = @top_srcdir@/include \ + @top_srcdir@/examples # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is @@ -757,7 +757,7 @@ EXCLUDE_SYMBOLS = # directories that contain example code fragments that are included (see # the \include command). -EXAMPLE_PATH = ../examples +EXAMPLE_PATH = @top_srcdir@/examples # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp @@ -1534,7 +1534,7 @@ SEARCH_INCLUDES = YES # contain include files that are not input files but should be processed by # the preprocessor. -INCLUDE_PATH = ../include +INCLUDE_PATH = @top_srcdir@/include # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the diff --git a/doc/Makefile.am b/doc/Makefile.am index 94613a3..5d07f73 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -23,9 +23,6 @@ # SOFTWARE. # -EXTRA_DIST = \ - Doxyfile - if HAVE_DOXYGEN all-local: doc |