reticulum/Makefile

62 wiersze
1.3 KiB
Makefile
Czysty Zwykły widok Historia

2021-12-01 18:23:19 +00:00
all: release
2022-06-09 08:31:48 +00:00
test:
@echo Running tests...
python -m tests.all
2021-12-01 18:23:19 +00:00
clean:
@echo Cleaning...
2022-06-10 10:54:12 +00:00
@-rm -rf ./build
@-rm -rf ./dist
2022-06-14 11:45:48 +00:00
@-rm -rf ./*.data
2022-06-10 10:54:12 +00:00
@-rm -rf ./__pycache__
@-rm -rf ./RNS/__pycache__
@-rm -rf ./RNS/Cryptography/__pycache__
@-rm -rf ./RNS/Cryptography/aes/__pycache__
@-rm -rf ./RNS/Cryptography/pure25519/__pycache__
@-rm -rf ./RNS/Interfaces/__pycache__
@-rm -rf ./RNS/Utilities/__pycache__
@-rm -rf ./RNS/vendor/__pycache__
@-rm -rf ./RNS/vendor/i2plib/__pycache__
@-rm -rf ./tests/__pycache__
@-rm -rf ./tests/rnsconfig/storage
@-rm -rf ./*.egg-info
2022-09-30 11:09:10 +00:00
@make -C docs clean
2022-06-10 10:54:12 +00:00
@echo Done
2021-12-01 18:23:19 +00:00
remove_symlinks:
@echo Removing symlinks for build...
-rm Examples/RNS
-rm RNS/Utilities/RNS
create_symlinks:
@echo Creating symlinks...
-ln -s ../RNS ./Examples/
-ln -s ../../RNS ./RNS/Utilities/
2022-06-10 10:46:20 +00:00
build_sdist_only:
python3 setup.py sdist
2021-12-01 18:23:19 +00:00
build_wheel:
python3 setup.py sdist bdist_wheel
2022-06-10 10:46:20 +00:00
build_pure_wheel:
python3 setup.py sdist bdist_wheel --pure
2022-06-22 08:08:27 +00:00
documentation:
make -C docs html
2022-06-22 08:12:05 +00:00
manual:
make -C docs latexpdf epub
2022-06-22 08:12:05 +00:00
release: test remove_symlinks build_wheel build_pure_wheel documentation manual create_symlinks
2021-12-01 18:23:19 +00:00
2022-09-06 17:42:50 +00:00
debug: remove_symlinks build_wheel build_pure_wheel create_symlinks
2021-12-01 18:23:19 +00:00
upload:
2022-06-10 10:46:20 +00:00
@echo Ready to publish release, hit enter to continue
@read VOID
2021-12-01 18:23:19 +00:00
@echo Uploading to PyPi...
twine upload dist/*
2022-06-10 10:46:20 +00:00
@echo Release published