summaryrefslogtreecommitdiff
path: root/contrib/python/podman/Makefile
blob: 0a0804566a8c8289ee3d74fe771387754e5d2de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
PYTHON ?= /usr/bin/python3

.PHONY: python-podman
python-podman:
	$(PYTHON) setup.py sdist bdist

.PHONY: lint
lint:
	$(PYTHON) -m pylint podman

.PHONY: integration
integration:
	test/test_runner.sh

.PHONY: install
install:
	$(PYTHON) setup.py install

.PHONY: clobber
clobber: uninstall clean

.PHONY: uninstall
uninstall:
	$(PYTHON) -m pip uninstall --yes podman ||:

.PHONY: clean
clean:
	$(PYTHON) setup.py clean --all
	rm -rf podman.egg-info dist
	find . -depth -name __pycache__ -exec rm -rf {} \;
	find . -depth -name \*.pyc -exec rm -f {} \;