blob: 97f8b60bfa5f6aa90f54d9f81d8baa367361103c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
.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
test-light:
php parserTests.php --color=light
doc:
php mwdocgen.php -all
echo 'Doc generation done. Look at ./docs/html/'
doxydoc:
cd .. && doxygen maintenance/mwdoxygen.cfg
echo 'Doc generation done. Look at ./docs/html/'
|