rnview/Makefile

26 lines
416 B
Makefile
Raw Permalink Normal View History

2023-09-27 10:59:18 +02:00
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/*