Files
Yuu-Box/Makefile
aguitauwu 5a4b5b83dd pos nomas
2026-02-16 11:41:18 -06:00

21 lines
373 B
Makefile

.PHONY: build dev install test clean
build:
maturin build --release
dev:
maturin develop
install:
pip install -e ".[dev]"
test:
pytest tests/
cargo test --manifest-path yuubox-core/Cargo.toml
clean:
rm -rf target dist build *.egg-info
find . -type d -name __pycache__ -exec rm -rf {} +
find . -type f -name "*.pyc" -delete
find . -type f -name "*.so" -delete