1
0
Fork 0
mirror of https://gitee.com/fantix/kloop.git synced 2024-04-26 02:08:46 +00:00
kloop/Makefile
2022-06-26 11:48:48 -04:00

24 lines
394 B
Makefile

.PHONY: dist dev build clean
.DEFAULT_GOAL := dev
# Make distribution tarballs
dist:
pip install -U build
python -m build
# Incrementally build for development
dev:
KLOOP_DEBUG=1 python setup.py develop
# Always build for development
build:
KLOOP_FORCE=1 KLOOP_DEBUG=1 python setup.py develop
# Clean up everything including the Rust build cache
clean:
python setup.py clean --all