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