mirror of
https://gitee.com/fantix/kloop.git
synced 2024-11-21 18:01:00 +00:00
15 lines
222 B
Makefile
15 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"
|