10 lines
178 B
Makefile
10 lines
178 B
Makefile
.PHONY: help doc test
|
|
help:
|
|
# Run 'make test' to run the parser tests.
|
|
# Run 'make doc' to run the phpdoc generation.
|
|
|
|
test:
|
|
php parserTests.php
|
|
|
|
doc:
|
|
php mwdocgen.php --all
|