Doxygen: Exclude more non-public files and directories.

This commit is contained in:
Uwe Hermann 2014-08-10 18:56:54 +02:00
parent 9fcc286604
commit 15aa3b0d0c
1 changed files with 18 additions and 10 deletions

View File

@ -778,7 +778,9 @@ RECURSIVE = YES
# Note that relative paths are relative to the directory from which doxygen is # Note that relative paths are relative to the directory from which doxygen is
# run. # run.
EXCLUDE = config.h libsigrok-internal.h session_driver.c std.c EXCLUDE = config.h src/libsigrok-internal.h src/session_driver.c
EXCLUDE += src/std.c src/drivers.c src/ezusb.c src/serial.c
EXCLUDE += src/soft-trigger.c src/usb.c
# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
# directories that are symbolic links (a Unix file system feature) are excluded # directories that are symbolic links (a Unix file system feature) are excluded
@ -797,19 +799,25 @@ EXCLUDE_SYMLINKS = NO
# #
# Ignore the following files and directories (see also EXCLUDE above): # Ignore the following files and directories (see also EXCLUDE above):
# - config.h: Non-public stuff, the file doesn't get installed. # - config.h: Non-public stuff, the file doesn't get installed.
# - libsigrok-internal.h: Non-public stuff, the file doesn't get installed. # - src/libsigrok-internal.h: Non-public stuff, the file doesn't get installed.
# - session_driver.c: Special driver for "virtual" devices, non-public. # - src/session_driver.c: Special driver for "virtual" devices, non-public.
# - std.c: Non-public helpers, no public API stuff in there. # - src/std.c: Non-public helpers, no public API stuff in there.
# - hardware/*: Only driver-specific stuff, no public API stuff in there. # - src/drivers.c: Non-public helpers, no public API stuff in there.
# - input/*: Only input.c contains public API, everything else doesn't. # - src/ezusb.c: Non-public helpers, no public API stuff in there.
# - output/*: Only output.c contains public API, everything else doesn't. # - src/serial.c: Non-public helpers, no public API stuff in there.
# - src/soft-trigger.c: Non-public helpers, no public API stuff in there.
# - src/usb.c: Non-public helpers, no public API stuff in there.
# - src/hardware/*: Only driver-specific stuff, no public API stuff in there.
# - src/input/*: Only input.c contains public API, everything else doesn't.
# - src/output/*: Only output.c contains public API, everything else doesn't.
# - src/scpi/*: Non-public helpers, no public API stuff in there.
# - src/dmm/*: Non-public helpers, no public API stuff in there.
# - tests/*: Unit tests, no public API stuff in there. # - tests/*: Unit tests, no public API stuff in there.
# - bindings/*: Language bindings, no public API stuff in there. # - bindings/*: Language bindings, no public API stuff in there.
# - doxy/*: Potentially already generated docs, should not be scanned. # - doxy/*: Potentially already generated docs, should not be scanned.
# #
EXCLUDE_PATTERNS = */hardware/* */input/* */output/* */tests/* EXCLUDE_PATTERNS = */hardware/* */input/* */output/* */scpi/* */dmm/*
EXCLUDE_PATTERNS += */bindings/* EXCLUDE_PATTERNS += */tests/* */bindings/* */doxy/*
EXCLUDE_PATTERNS += */doxy/*
INPUT += src/input/input.c src/output/output.c INPUT += src/input/input.c src/output/output.c
# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names