1
0
Fork 0
mirror of https://gitee.com/fantix/kloop.git synced 2024-06-01 19:42:08 +00:00
kloop/Makefile
2022-03-19 17:41:48 -04:00

16 lines
222 B
Makefile

.PHONY: build dev clean
.DEFAULT_GOAL := dev
build:
pip install -U build
python -m build
dev:
pip install -Ue .
clean:
git clean -Xfd -e "!/*.code-workspace" -e "!/*.vscode" -e "!/*.idea" -e "!/*.python-version"