1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
.PHONY: clean clean: rm -rf build rm -rf dist rm -rf wheelhouse rm -rf pyroscope_beta.egg-info rm -rf lib/target .PHONY: build build: clean python -m build --wheel .PHONY: install install: build pip install --force-reinstall dist/*.whl