LXMF/Makefile

26 lines
442 B
Makefile
Raw Normal View History

2021-12-01 13:28:27 -05:00
all: release
clean:
@echo Cleaning...
-rm -r ./build
-rm -r ./dist
remove_symlinks:
@echo Removing symlinks for build...
-rm ./RNS
2022-10-22 16:43:28 -04:00
-rm ./LXMF/Utilities/LXMF
2021-12-01 13:28:27 -05:00
create_symlinks:
@echo Creating symlinks...
-ln -s ../Reticulum/RNS ./
2022-10-22 16:43:28 -04:00
-ln -s ../../LXMF ./LXMF/Utilities/LXMF
2021-12-01 13:28:27 -05:00
build_wheel:
python3 setup.py sdist bdist_wheel
release: remove_symlinks build_wheel create_symlinks
upload:
@echo Uploading to PyPi...
twine upload dist/*