Updated makefile

This commit is contained in:
Mark Qvist 2022-06-09 10:31:48 +02:00
parent 26dae3830e
commit 6c22ccc6d4

View File

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