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