Updated makefile

This commit is contained in:
Mark Qvist 2022-06-09 10:31:48 +02:00
parent 26dae3830e
commit 6c22ccc6d4
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
all: release
test:
@echo Running tests...
python -m tests.all
clean:
@echo Cleaning...
-rm -r ./build
@ -18,7 +22,7 @@ create_symlinks:
build_wheel:
python3 setup.py sdist bdist_wheel
release: remove_symlinks build_wheel create_symlinks
release: test remove_symlinks build_wheel create_symlinks
upload:
@echo Uploading to PyPi...