apidoc: Limit INPUT to src subdirectory and README.md

While 0909bf6c explicitly includes the whole source tree (to cover README.md),
this has the unpleasant side effect of covering a workspace under "testing"
with all its sources, or any other potential subdirectory that exists.
This commit is contained in:
Martin Willi 2015-03-19 12:17:03 +01:00
parent b546a98e0a
commit 945fdeb918
2 changed files with 2 additions and 2 deletions

View File

@ -743,7 +743,7 @@ WARN_LOGFILE =
# spaces. # spaces.
# Note: If this tag is empty the current directory is searched. # Note: If this tag is empty the current directory is searched.
INPUT = @SRC_DIR@/ INPUT = @SRC_DIR@/src @SRC_DIR@/README.md
# This tag can be used to specify the character encoding of the source files # 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 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses

View File

@ -34,7 +34,7 @@ Doxyfile : Doxyfile.in
sed \ sed \
-e "s:\@PACKAGE_VERSION\@:$(PACKAGE_VERSION):" \ -e "s:\@PACKAGE_VERSION\@:$(PACKAGE_VERSION):" \
-e "s:\@PACKAGE_NAME\@:$(PACKAGE_NAME):" \ -e "s:\@PACKAGE_NAME\@:$(PACKAGE_NAME):" \
-e "s:\@SRC_DIR\@:$(srcdir):" \ -e "s:\@SRC_DIR\@:$(srcdir):g" \
$(srcdir)/$@.in > $@ $(srcdir)/$@.in > $@
apidoc : Doxyfile apidoc : Doxyfile