Codebase list flask-babel / b1e56ed0-2e87-4f60-b439-a53e4a77fbb7/main Makefile
b1e56ed0-2e87-4f60-b439-a53e4a77fbb7/main

Tree @b1e56ed0-2e87-4f60-b439-a53e4a77fbb7/main (Download .tar.gz)

Makefile @b1e56ed0-2e87-4f60-b439-a53e4a77fbb7/mainraw · history · blame

.PHONY: clean-pyc test upload-docs

all: clean-pyc test

test:
	@cd tests; python tests.py

tox-test:
	@tox

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

clean: clean-pyc

upload-docs:
	$(MAKE) -C docs html
	python setup.py upload_docs

.PHONY: upload-docs clean-pyc clean tox-test test all