From 669e429b3f01c76fcc60ca07ce5cf99d9f4513ff Mon Sep 17 00:00:00 2001 From: thebjork <68372868+thebjork@users.noreply.github.com> Date: Tue, 11 Oct 2022 21:43:45 +0530 Subject: [PATCH] Update Makefile --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 .