X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=maintenance%2FMakefile;h=a348e856f3e36821df747768526e0812c9e5dc53;hb=d96d1264ee39f43f59e624902ce0cf1e0f30e002;hp=a92751c93dbeb4420342c1b0d169050a215434cf;hpb=002cdd47e1a951e9da6c1566ea82aeab08a40a40;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/Makefile b/maintenance/Makefile index a92751c93d..a348e856f3 100644 --- a/maintenance/Makefile +++ b/maintenance/Makefile @@ -1,10 +1,19 @@ help: @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 tests/parserTests.php --quiet + php tests/parser/parserTests.php --quiet doc: php mwdocgen.php --all - @echo 'Doc generation done. Look at ./docs/html/' + ./mwjsduck-gen + @echo 'PHP documentation (by Doxygen) in ./docs/html/' + @echo 'JS documentation (by JSDuck) in ./docs/js/' + +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)'