diff --git a/Makefile b/Makefile index 9ec81ca..80e3e91 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ -PWD = $(shell pwd) +PY = venv/Scripts/python -clean: - rm -rf $(PWD)/build $(PWD)/dist $(PWD)/mvt.egg-info +run: + $(PY) -m pysql.main -dist: - python3 setup.py sdist bdist_wheel +run_c: + $(PY) -m pysql.main_c -upload: - python3 -m twine upload dist/* +clean: + $(PY) -m pyclean .