aboutsummaryrefslogtreecommitdiff
path: root/contrib/python/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/python/Makefile')
-rw-r--r--contrib/python/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/python/Makefile b/contrib/python/Makefile
new file mode 100644
index 000000000..d0ec60687
--- /dev/null
+++ b/contrib/python/Makefile
@@ -0,0 +1,15 @@
+PYTHON ?= /usr/bin/python3
+
+.PHONY: python-podman
+python-podman:
+ $(PYTHON) setup.py bdist
+
+.PHONY: integration
+integration:
+ test/test_runner.sh
+
+.PHONY: clean
+clean:
+ $(PYTHON) setup.py clean --all
+ rm -rf podman.egg-info dist
+ find . -depth -name __pycache__ -exec rm -rf {} \;