From bffe7347e7aec1838ea3444ba79654cdd4070525 Mon Sep 17 00:00:00 2001 From: fede Date: Mon, 21 Jul 2025 16:57:58 -0300 Subject: [PATCH] =?UTF-8?q?a=C3=B1adida=20makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..ddf34ab --- /dev/null +++ b/makefile @@ -0,0 +1,13 @@ +PWD := $(shell pwd) +PYTHON := $(PWD)/venv/bin/python + +entrenar: + $(PYTHON) ./entrenar.py + +run: + $(PYTHON) ./drag_and_drop.py + +shell: + bash --rcfile <(echo "source $(PYTHON)/../activate") + +.PHONY: entrenar run shell