diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..487576e --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +PYTHON ?= python + +all: + $(PYTHON) setup.py build + +install: all + $(PYTHON) setup.py install + +clean: + $(PYTHON) setup.py clean + +check: all + $(PYTHON) setup.py test + +rpm: + $(PYTHON) setup.py bdist_rpm \ + --requires PyYAML,python-requests,python-tox,python-future