proxy.py/Makefile

18 lines
287 B
Makefile
Raw Normal View History

.PHONY: all clean test package release
2013-12-23 21:51:45 +00:00
all: clean test
clean:
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
test:
2014-02-20 21:56:27 +00:00
python tests.py -v
2013-12-23 21:51:45 +00:00
package:
python setup.py sdist
release:
python setup.py sdist register upload