summaryrefslogtreecommitdiff
path: root/contrib/python/Makefile
blob: d0ec60687bb4da22b21976b664e5b18a29240efd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 {} \;