mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
318 B
14 lines
318 B
.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 {} + |
|
|
|
upload-docs: |
|
$(MAKE) -C docs dirhtml && scp -r docs/_build/dirhtml/* pocoo.org:/var/www/flask.pocoo.org/docs/
|
|
|