flask/Makefile

12 lines
206 B
Makefile
Raw Normal View History

2010-04-14 02:42:12 +02:00
.PHONY: clean-pyc test
all: clean-pyc test
test:
python tests/flask_tests.py
clean-pyc:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +