* Update the maintenance Makefile to point to npm run doc and drop the custom file
* Drop sync references to the eg-iframe system, dropped in 5a3922a4a
* Drop a file from OOUI only imported for said eg-iframe system
Bug: T138401
Change-Id: Ic34c028ef6b43e2ba3dc6f215b6a1e7d94d97e0a
19 lines
578 B
Makefile
19 lines
578 B
Makefile
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/parser/parserTests.php --quiet
|
|
|
|
doc:
|
|
php mwdocgen.php --all
|
|
npm run doc
|
|
@echo 'PHP documentation (by Doxygen) in ./docs/html/'
|
|
@echo 'JS documentation (by JSDoc) 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)'
|