blob: 30b568dcab819dafab3430940ae3b1fe25f3ce78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
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)'
|