.PHONY: tags check documentation sphinx-apidoc DOC_OUTPUT = doc.rendered tags: ctags `find mu4web -type f -name \*.py ` check: mypy -p mu4web flake8 mu4web sphinx-apidoc: sphinx-apidoc --separate --force -o doc mu4web $(DOC_OUTPUT)/index.html: sphinx-apidoc sphinx-build -b dirhtml doc $(DOC_OUTPUT) documentation: $(DOC_OUTPUT)/index.html