mirror of
https://github.com/markqvist/NomadNet.git
synced 2024-10-01 01:26:07 -04:00
Added makefile
This commit is contained in:
parent
1c1ddab28f
commit
b2d54cf40a
25
Makefile
Normal file
25
Makefile
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
all: release
|
||||||
|
|
||||||
|
clean:
|
||||||
|
@echo Cleaning...
|
||||||
|
-rm -r ./build
|
||||||
|
-rm -r ./dist
|
||||||
|
|
||||||
|
remove_symlinks:
|
||||||
|
@echo Removing symlinks for build...
|
||||||
|
-rm ./LXMF
|
||||||
|
-rm ./RNS
|
||||||
|
|
||||||
|
create_symlinks:
|
||||||
|
@echo Creating symlinks...
|
||||||
|
-ln -s ../Reticulum/RNS ./
|
||||||
|
-ln -s ../LXMF/LXMF ./
|
||||||
|
|
||||||
|
build_wheel:
|
||||||
|
python3 setup.py sdist bdist_wheel
|
||||||
|
|
||||||
|
release: remove_symlinks build_wheel create_symlinks
|
||||||
|
|
||||||
|
upload:
|
||||||
|
@echo Uploading to PyPi...
|
||||||
|
twine upload dist/*
|
Loading…
Reference in New Issue
Block a user