LMXF-specification/Makefile

30 lines
560 B
Makefile
Raw Normal View History

2021-12-01 19:28:27 +01:00
all: release
clean:
@echo Cleaning...
-rm -r ./build
-rm -r ./dist
remove_symlinks:
@echo Removing symlinks for build...
-rm ./RNS
2022-10-22 22:43:28 +02:00
-rm ./LXMF/Utilities/LXMF
2021-12-01 19:28:27 +01:00
create_symlinks:
@echo Creating symlinks...
-ln -s ../Reticulum/RNS ./
2022-10-22 22:43:28 +02:00
-ln -s ../../LXMF ./LXMF/Utilities/LXMF
2021-12-01 19:28:27 +01:00
build_wheel:
2025-11-27 18:38:52 +01:00
python3 setup.py bdist_wheel
build_sdist:
python3 setup.py sdist
build_spkg: remove_symlinks build_sdist create_symlinks
2021-12-01 19:28:27 +01:00
2026-05-20 00:33:46 +02:00
release: remove_symlinks build_wheel build_spkg create_symlinks
2021-12-01 19:28:27 +01:00
upload:
@echo Uploading to PyPi...
2026-05-21 17:58:59 +02:00
twine upload dist/*.whl dist/*.tar.gz