[haiku-commits] Change in haiku[master]: HaikuBook: Add Makefile that supports the default and the develop con...

  • From: Gerrit <review@xxxxxxxxxxxxxxxxxxx>
  • To: waddlesplash <waddlesplash@xxxxxxxxx>, haiku-commits@xxxxxxxxxxxxx
  • Date: Sun, 11 Oct 2020 14:43:55 +0000

From Niels Sascha Reedijk <niels.reedijk@xxxxxxxxx>:

Niels Sascha Reedijk has uploaded this change for review. ( 
https://review.haiku-os.org/c/haiku/+/3304 ;)


Change subject: HaikuBook: Add Makefile that supports the default and the 
develop configurations
......................................................................

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.
---
A docs/user/Makefile
1 file changed, 12 insertions(+), 0 deletions(-)



  git pull ssh://git.haiku-os.org:22/haiku refs/changes/04/3304/1

diff --git a/docs/user/Makefile b/docs/user/Makefile
new file mode 100644
index 0000000..fead8c2
--- /dev/null
+++ b/docs/user/Makefile
@@ -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 -
\ No newline at end of file

--
To view, visit https://review.haiku-os.org/c/haiku/+/3304
To unsubscribe, or for help writing mail filters, visit 
https://review.haiku-os.org/settings

Gerrit-Project: haiku
Gerrit-Branch: master
Gerrit-Change-Id: I09248c95bd51ea21118ff4f7ce57427d033981d2
Gerrit-Change-Number: 3304
Gerrit-PatchSet: 1
Gerrit-Owner: Niels Sascha Reedijk <niels.reedijk@xxxxxxxxx>
Gerrit-MessageType: newchange

Other related posts:

  • » [haiku-commits] Change in haiku[master]: HaikuBook: Add Makefile that supports the default and the develop con... - Gerrit