diff options
author | Olivier Blin <olivier.blin@softathome.com> | 2012-12-28 19:58:46 +0100 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2013-01-14 21:52:43 +1100 |
commit | f699788f314449e6e2bdde1ca9c4376b4cd956bc (patch) | |
tree | d0e985fc260a489afb06fabef3fc83ec30079c04 /doc | |
parent | fb13acc45738a0d30382d96c6a6f09a3298623fb (diff) | |
download | flac-f699788f314449e6e2bdde1ca9c4376b4cd956bc.tar.gz |
doc: fix out-of-tree build
When building outside of the source tree, the Doxyfile needs to be
generated in the build tree and should point to the proper paths for
include directories and html footer.
The generated api files to install should also be taken from the build
tree instead of the source tree.
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Doxyfile.in (renamed from doc/Doxyfile) | 6 | ||||
-rw-r--r-- | doc/Makefile.am | 3 | ||||
-rw-r--r-- | doc/html/Makefile.am | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile.in index 000c2fb9..94805456 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile.in @@ -451,8 +451,8 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = ../include/FLAC \ - ../include/FLAC++ +INPUT = @top_srcdir@/include/FLAC \ + @top_srcdir@/include/FLAC++ # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp @@ -632,7 +632,7 @@ HTML_HEADER = # each generated HTML page. If it is left blank doxygen will generate a # standard footer. -HTML_FOOTER = doxygen.footer.html +HTML_FOOTER = @top_srcdir@/doc/doxygen.footer.html # 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 70fb4a14..67703e9e 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -18,6 +18,7 @@ SUBDIRS = . html if FLaC__HAS_DOXYGEN +all-local: Doxyfile FLAC.tag: Doxyfile doxygen Doxyfile rm -rf html/api @@ -35,7 +36,7 @@ docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION) doc_DATA = \ FLAC.tag -EXTRA_DIST = Doxyfile Makefile.lite doxygen.footer.html doxygen.header.html $(doc_DATA) +EXTRA_DIST = Doxyfile.in Makefile.lite doxygen.footer.html doxygen.header.html $(doc_DATA) maintainer-clean-local: rm -rf FLAC.tag html/api doxytmp diff --git a/doc/html/Makefile.am b/doc/html/Makefile.am index 1b2b3363..2b06aab6 100644 --- a/doc/html/Makefile.am +++ b/doc/html/Makefile.am @@ -72,7 +72,7 @@ if FLaC__HAS_DOXYGEN # handle 'api/' specially: install-data-local: $(mkinstalldirs) $(DESTDIR)$(docdir)/api - (cd $(srcdir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api) + (cd $(builddir)/api && $(INSTALL_DATA) * $(DESTDIR)$(docdir)/api) uninstall-local: rm -rf $(DESTDIR)$(docdir)/api maintainer-clean-local: |