Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Feb 21, 2018
1 parent 94c1c6a commit 10c5f6a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ clean: ## clean the repository
find . -name "__pycache__" | xargs rm -rf
find . -name "*.pyc" | xargs rm -rf
rm -rf .coverage cover htmlcov logs build dist *.egg-info
make -C ./docs clean

docs: ## make documentation
make -C ./docs html

install: ## install to site-packages
python3 setup.py install
Expand All @@ -29,4 +33,4 @@ help:
print-%:
@echo '$*=$($*)'

.PHONY: clean test tests help annotate annotate_l
.PHONY: clean test tests help annotate annotate_l docs

0 comments on commit 10c5f6a

Please sign in to comment.