From: Martin Willi Date: Thu, 19 Mar 2015 11:17:03 +0000 (+0100) Subject: apidoc: Limit INPUT to src subdirectory and README.md X-Git-Tag: 5.3.0rc1~20 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=945fdeb9187025b50c81437c1835f886cf96581f;p=thirdparty%2Fstrongswan.git 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. --- diff --git a/Doxyfile.in b/Doxyfile.in index 8adf83c7fd..eaf02d7de8 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -743,7 +743,7 @@ WARN_LOGFILE = # spaces. # 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 # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/Makefile.am b/Makefile.am index 0703abc107..bea4ba7c02 100644 --- a/Makefile.am +++ b/Makefile.am @@ -34,7 +34,7 @@ Doxyfile : Doxyfile.in sed \ -e "s:\@PACKAGE_VERSION\@:$(PACKAGE_VERSION):" \ -e "s:\@PACKAGE_NAME\@:$(PACKAGE_NAME):" \ - -e "s:\@SRC_DIR\@:$(srcdir):" \ + -e "s:\@SRC_DIR\@:$(srcdir):g" \ $(srcdir)/$@.in > $@ apidoc : Doxyfile