resources: Collapse all jQuery UI modules into one deprecated mega-module
[lhc/web/wiklou.git] / maintenance / Makefile
1 help:
2 @echo "Run 'make test' to run the parser tests."
3 @echo "Run 'make doc' to run the doxygen generation."
4 @echo "Run 'make man' to run the doxygen generation with man pages."
5
6 test:
7 php tests/parser/parserTests.php --quiet
8
9 doc:
10 php mwdocgen.php --all
11 ./mwjsduck-gen
12 @echo 'PHP documentation (by Doxygen) in ./docs/html/'
13 @echo 'JS documentation (by JSDuck) in ./docs/js/'
14
15 man:
16 php mwdocgen.php --all --generate-man
17 @echo 'Doc generation done. Look at ./docs/html/ and ./docs/man'
18 @echo 'You might want to update your MANPATH currently:'
19 @echo 'MANPATH: $(MANPATH)'