Assuming we mostly want a quiet output.
[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 --quiet
9
10 doc:
11 php mwdocgen.php -all
12 echo 'Doc generation done. Look at ./docs/html/'
13
14 doxydoc:
15 cd .. && doxygen maintenance/mwdoxygen.cfg
16 echo 'Doc generation done. Look at ./docs/html/'
17