mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 07:18:40 +01:00
HaikuBook: Add Makefile that supports the default and the develop configurations
I use the develop configuration to generate a warnings file, which is useful to find undocumented members. The default configuration hides the undocumented members and does not warn about them. Change-Id: I09248c95bd51ea21118ff4f7ce57427d033981d2 Reviewed-on: https://review.haiku-os.org/c/haiku/+/3304 Reviewed-by: waddlesplash <waddlesplash@gmail.com>
This commit is contained in:
parent
5646b99778
commit
ae78fb3062
12
docs/user/Makefile
Normal file
12
docs/user/Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
define DEVELOP_CONFIG
|
||||
HIDE_UNDOC_MEMBERS = NO
|
||||
HIDE_UNDOC_CLASSES = NO
|
||||
ENABLED_SECTIONS = INTERNAL
|
||||
WARN_LOGFILE = "../../generated/doxygen/warnings.txt"
|
||||
GENERATE_XML = YES
|
||||
endef
|
||||
export DEVELOP_CONFIG
|
||||
default:
|
||||
doxygen
|
||||
develop:
|
||||
(cat Doxyfile; echo "$$DEVELOP_CONFIG") | doxygen -
|
Loading…
Reference in New Issue
Block a user