Codebase list python-livereload / debian/2.5.2-1 Makefile
debian/2.5.2-1

Tree @debian/2.5.2-1 (Download .tar.gz)

Makefile @debian/2.5.2-1raw · history · blame

.PHONY: clean-pyc clean-build docs test coverage

clean: clean-build clean-pyc


clean-build:
	rm -fr build/
	rm -fr dist/
	rm -fr *.egg-info


clean-pyc:
	find . -name '*.pyc' -exec rm -f {} +
	find . -name '*.pyo' -exec rm -f {} +
	find . -name '*~' -exec rm -f {} +

install:
	python setup.py install

docs:
	$(MAKE) -C docs html

test:
	@nosetests -s

coverage:
	@rm -f .coverage
	@nosetests --with-coverage --cover-package=livereload --cover-html