mirror of
https://github.com/containers/podman.git
synced 2025-06-19 16:33:24 +08:00
17 lines
327 B
Makefile
17 lines
327 B
Makefile
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 {} \;
|
|
find . -depth -name \*.pyc -exec rm -f {} \;
|