API * Implemented backlinks / imagelinks / embeddedin modules
[mediawiki.git] / maintenance / Makefile
blob97f8b60bfa5f6aa90f54d9f81d8baa367361103c
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).
7 test:
8 php parserTests.php
10 test-light:
11 php parserTests.php --color=light
13 doc:
14 php mwdocgen.php -all
15 echo 'Doc generation done. Look at ./docs/html/'
17 doxydoc:
18 cd .. && doxygen maintenance/mwdoxygen.cfg
19 echo 'Doc generation done. Look at ./docs/html/'