mirror of
https://github.com/markqvist/LXMF.git
synced 2025-03-03 04:19:27 -05:00
Added makefile
This commit is contained in:
parent
38bbf19421
commit
1ca2493c36
23
Makefile
Normal file
23
Makefile
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
all: release
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@echo Cleaning...
|
||||||
|
-rm -r ./build
|
||||||
|
-rm -r ./dist
|
||||||
|
|
||||||
|
remove_symlinks:
|
||||||
|
@echo Removing symlinks for build...
|
||||||
|
-rm ./RNS
|
||||||
|
|
||||||
|
create_symlinks:
|
||||||
|
@echo Creating symlinks...
|
||||||
|
-ln -s ../Reticulum/RNS ./
|
||||||
|
|
||||||
|
build_wheel:
|
||||||
|
python3 setup.py sdist bdist_wheel
|
||||||
|
|
||||||
|
release: remove_symlinks build_wheel create_symlinks
|
||||||
|
|
||||||
|
upload:
|
||||||
|
@echo Uploading to PyPi...
|
||||||
|
twine upload dist/*
|
Loading…
x
Reference in New Issue
Block a user