aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/Makefile
diff options
context:
space:
mode:
authorAntoine Musso <hashar@users.mediawiki.org>2005-08-11 00:28:51 +0000
committerAntoine Musso <hashar@users.mediawiki.org>2005-08-11 00:28:51 +0000
commit4ec28f5b0490a8e882d107a342dc1c2b591784fd (patch)
tree7a22637248f425c9b5ce2adb83d7896e22f05533 /maintenance/Makefile
parent7248fb24376f8da8ba7c0479db8b1b4f14b2806e (diff)
downloadmediawikicore-4ec28f5b0490a8e882d107a342dc1c2b591784fd.tar.gz
mediawikicore-4ec28f5b0490a8e882d107a342dc1c2b591784fd.zip
Unsupported doxygen configuration:
* Need to rewrite lot of our existing documentation * Doxygen PHP support got some 'interesting' bugs :(
Notes
Notes: http://mediawiki.org/wiki/Special:Code/MediaWiki/10430
Diffstat (limited to 'maintenance/Makefile')
-rw-r--r--maintenance/Makefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/maintenance/Makefile b/maintenance/Makefile
index 8cdb03f00846..872938b41ddd 100644
--- a/maintenance/Makefile
+++ b/maintenance/Makefile
@@ -1,7 +1,8 @@
-.PHONY: help doc test
+.PHONY: help test test-light
help:
# Run 'make test' to run the parser tests.
# Run 'make doc' to run the phpdoc generation.
+ # Run 'make doxydoc' (unsupported doxygen generation).
test:
php parserTests.php
@@ -10,4 +11,10 @@ test-light:
php parserTests.php --color=light
doc:
- php mwdocgen.php --all
+ php mwgendoc.php -all
+ echo 'Doc generation done. Look at ./docs/html/'
+
+doxydoc:
+ cd .. && doxygen maintenance/mwdoxygen.cfg
+ echo 'Doc generation done. Look at ./docs/html/'
+