From: Bartosz Golaszewski Date: Wed, 18 Feb 2015 12:21:18 +0000 (+0100) Subject: Doxyfile: Make exclude patterns more specific. X-Git-Tag: libsigrok-0.4.0~623 X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=b1e034f7584ee71b116aeca7f50ae3ec738ccbf0;p=libsigrok.git Doxyfile: Make exclude patterns more specific. Current exclude patterns lead to unwanted exclusion of all paths containing common directory names like output, bindings etc. even if those names occur higher in the directory structure. Make exclude patterns more specific by prefixing them with src/. Signed-off-by: Bartosz Golaszewski --- diff --git a/Doxyfile b/Doxyfile index c9e2b9f8..5907e63b 100644 --- a/Doxyfile +++ b/Doxyfile @@ -818,9 +818,9 @@ EXCLUDE_SYMLINKS = NO # - bindings/*: Language bindings, no public API stuff in there. # - doxy/*: Potentially already generated docs, should not be scanned. # -EXCLUDE_PATTERNS = */hardware/* */input/* */output/* */transform/* -EXCLUDE_PATTERNS += */scpi/* */dmm/* */lcr/* -EXCLUDE_PATTERNS += */tests/* */bindings/* */doxy/* +EXCLUDE_PATTERNS = */src/hardware/* */src/input/* */src/output/* */src/transform/* +EXCLUDE_PATTERNS += */src/scpi/* */src/dmm/* */src/lcr/* +EXCLUDE_PATTERNS += */src/tests/* */src/bindings/* */src/doxy/* INPUT += src/input/input.c src/output/output.c INPUT += src/transform/transform.c