python-compute/Makefile

9 lines
157 B
Makefile
Raw Normal View History

2023-06-17 20:07:50 +03:00
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