1
0
Fork 0
mirror of https://gitee.com/fantix/kloop.git synced 2024-05-19 00:38:34 +00:00
kloop/Makefile

16 lines
222 B
Makefile
Raw Normal View History

2022-03-19 21:38:34 +00:00
.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"