añadida makefile

This commit is contained in:
2025-07-21 16:57:58 -03:00
parent 7311cdf6c6
commit bffe7347e7

13
makefile Normal file
View File

@@ -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