(k) fix minor glitch in installExtension.php
[lhc/web/wiklou.git] / maintenance / Makefile
1 .PHONY: help test test-light
2 help:
3 # Run 'make test' to run the parser tests.
4 # Run 'make doc' to run the phpdoc generation.
5 # Run 'make doxydoc' (unsupported doxygen generation).
6
7 test:
8 php parserTests.php
9
10 test-light:
11 php parserTests.php --color=light
12
13 doc:
14 php mwdocgen.php -all
15 echo 'Doc generation done. Look at ./docs/html/'
16
17 doxydoc:
18 cd .. && doxygen maintenance/mwdoxygen.cfg
19 echo 'Doc generation done. Look at ./docs/html/'
20