Files
reconocimiento/makefile
2025-07-21 16:57:58 -03:00

14 lines
215 B
Makefile

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