Permalink
Browse files
adds "docs" target to makefile
- Loading branch information...
Showing
with
5 additions
and
1 deletion.
-
+5
−1
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