mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-02-01 18:41:54 +08:00
initial commit
This commit is contained in:
36
kvmd/Makefile
Normal file
36
kvmd/Makefile
Normal file
@@ -0,0 +1,36 @@
|
||||
all:
|
||||
cat Makefile
|
||||
|
||||
bencoder:
|
||||
python3 setup.py build_ext --inplace
|
||||
|
||||
release:
|
||||
make clean
|
||||
make tox
|
||||
make clean
|
||||
make push
|
||||
make bump
|
||||
make push
|
||||
make pypi
|
||||
make clean
|
||||
|
||||
tox:
|
||||
tox
|
||||
|
||||
bump:
|
||||
bumpversion patch
|
||||
|
||||
push:
|
||||
git push
|
||||
git push --tags
|
||||
|
||||
pypi:
|
||||
python3 setup.py register
|
||||
python3 setup.py sdist upload
|
||||
|
||||
clean:
|
||||
rm -rf build site dist pkg src *.egg-info kvmd-*.tar.gz
|
||||
find -name __pycache__ | xargs rm -rf
|
||||
|
||||
clean-all: clean
|
||||
rm -rf .tox .mypy_cache
|
||||
Reference in New Issue
Block a user