Merge "(bug 42410) Add $pageObj->clear() for newtimestamp"
[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/parserTests.php --quiet
8
9 doc:
10 php mwdocgen.php --all
11 @echo 'Doc generation done. Look at ./docs/html/'
12
13 man:
14 php mwdocgen.php --all --generate-man
15 @echo 'Doc generation done. Look at ./docs/html/ and ./docs/man'
16 @echo 'You might want to update your MANPATH currently:'
17 @echo 'MANPATH: $(MANPATH)'