Skip to content
Browse files

adds "docs" target to makefile

  • Loading branch information...
1 parent 86142a3 commit 4428fb08cf5046c88ebfcf7602c31ae71c008188 @jeremylow jeremylow committed Mar 23, 2016
Showing with 5 additions and 1 deletion.
  1. +5 −1 Makefile
View
6 Makefile
@@ -2,6 +2,7 @@
help:
@echo " env install all production dependencies"
@echo " dev install all dev and production dependencies (virtualenv is assumed)"
+ @echo " docs build documentation"
@echo " clean remove unwanted stuff"
@echo " lint check style with flake8"
@echo " test run tests"
@@ -23,7 +24,10 @@ clean:
rm -fr dist
find . -name '*.pyc' -exec rm -f {} \;
find . -name '*.pyo' -exec rm -f {} \;
- find . -name '*~' -exec rm -f {} \;
+ find . -name '*~' ! -name '*.un~' -exec rm -f {} \;
+
+docs:
+ $(MAKE) -C doc html
lint:
flake8 twitter > violations.flake8.txt

0 comments on commit 4428fb0

Please sign in to comment.
Something went wrong with that request. Please try again.