blob: ea40cccac727f11534281ca1863072a9d018e081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
PYTHON ?= /usr/bin/python3
.PHONY: python-podman
python-podman:
$(PYTHON) setup.py bdist
.PHONY: integration
integration:
test/test_runner.sh
.PHONY: install
install:
$(PYTHON) setup.py install --user
.PHONY: clean
clean:
$(PYTHON) setup.py clean --all
pip3 uninstall podman ||:
rm -rf podman.egg-info dist
find . -depth -name __pycache__ -exec rm -rf {} \;
find . -depth -name \*.pyc -exec rm -f {} \;
|