cement/Makefile
2016-11-23 12:40:27 -06:00

20 lines
317 B
Makefile

.PHONY: all init doc test clean
all: init test doc clean
init:
pip install --upgrade -r requirements-dev.txt
test:
python setup.py nosetests
doc:
python setup.py build_sphinx
@echo
@echo DOC: "file://"$$(echo `pwd`/doc/build/html/index.html)
@echo
clean:
find . -name '*.py[co]' -delete
rm -rf doc/build