python-compute/Makefile
2023-06-17 20:07:50 +03:00

9 lines
157 B
Makefile

all: build
build:
poetry build
clean:
[ -d dist/ ] && rm -rf dist/ || true
find . -type d -name __pycache__ -exec rm -rf {} \; > /dev/null 2>&1 || true