Merge "revert gerrit change 29597 for TextContent constructor"
[lhc/web/wiklou.git] / maintenance / Makefile
index 1138fe6..30b568d 100644 (file)
@@ -1,10 +1,17 @@
-.PHONY: help make test
 help:
-       # Run 'make test' to run the parser tests.
-       # Run 'make doc' to run the phpdoc generation.
+       @echo "Run 'make test' to run the parser tests."
+       @echo "Run 'make doc' to run the doxygen generation."
+       @echo "Run 'make man' to run the doxygen generation with man pages."
 
 test:
-       php parserTests.php
+       php tests/parserTests.php --quiet
 
 doc:
        php mwdocgen.php --all
+       @echo 'Doc generation done. Look at ./docs/html/'
+
+man:
+       php mwdocgen.php --all --generate-man
+       @echo 'Doc generation done. Look at ./docs/html/ and ./docs/man'
+       @echo 'You might want to update your MANPATH currently:'
+       @echo 'MANPATH: $(MANPATH)'