Files
deb-python-semantic-version/Makefile
Raphaël Barrois 5550834eae Normalize docs to docs/ (Closes #5).
Also normalize the package layout.

Thanks @jdowner-gb & tleach for the report.
2013-12-23 20:48:57 +01:00

29 lines
449 B
Makefile

all: default
PACKAGE_DIR = src/semantic_version
default:
clean:
find . -type f -name '*.pyc' -delete
test:
python -W default setup.py test
coverage:
coverage erase
coverage run "--include=$(PACKAGE_DIR)/*.py,tests/*.py" --branch setup.py test
coverage report "--include=$(PACKAGE_DIR)/*.py,tests/*.py"
coverage html "--include=$(PACKAGE_DIR)/*.py,tests/*.py"
doc:
$(MAKE) -C docs html
.PHONY: all default clean coverage doc test