diff --git a/Makefile b/Makefile
index 2b0d4bcb7ede01933bd0e2106fa1c05fa99bfae6..d537c66ba2da0d3999ef47f934f94a27e963bf70 100644
--- a/Makefile
+++ b/Makefile
@@ -49,14 +49,14 @@ test:
 test-cov:
 	python -m pytest --cov ./ --cov-report term-missing --cov-report xml:reports/coverage.xml --cov-report html:reports/coverage $(ALLNAMES)
 
-
 flake8: 
 	python -m pytest --flake8
 
 docstyle: 
 	python -m pytest --pydocstyle
 
+doc:
+	cd doc && make html
+	cd ..
 
-
-
-
+.PHONY: install install-dev doc clean test test-cov flake8 docstyle buildremote