Codebase list flask-babel / multiarch-fixes/main Makefile
multiarch-fixes/main

Tree @multiarch-fixes/main (Download .tar.gz)

Makefile @multiarch-fixes/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