mirror of
https://github.com/markqvist/LXMF.git
synced 2024-10-01 01:35:36 -04:00
26 lines
442 B
Makefile
26 lines
442 B
Makefile
all: release
|
|
|
|
clean:
|
|
@echo Cleaning...
|
|
-rm -r ./build
|
|
-rm -r ./dist
|
|
|
|
remove_symlinks:
|
|
@echo Removing symlinks for build...
|
|
-rm ./RNS
|
|
-rm ./LXMF/Utilities/LXMF
|
|
|
|
create_symlinks:
|
|
@echo Creating symlinks...
|
|
-ln -s ../Reticulum/RNS ./
|
|
-ln -s ../../LXMF ./LXMF/Utilities/LXMF
|
|
|
|
build_wheel:
|
|
python3 setup.py sdist bdist_wheel
|
|
|
|
release: remove_symlinks build_wheel create_symlinks
|
|
|
|
upload:
|
|
@echo Uploading to PyPi...
|
|
twine upload dist/*
|