diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ef30791 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.DEFAULT_GOAL := help + +.PHONY: docs +.PHONY: html +docs html: + rm -rf docs/_build + $(MAKE) -C docs html + +.PHONY: help +help: + @echo "Welcome to Visionatrix development. Please use \`make \` where is one of" + @echo " docs make HTML docs" + @echo " "