televex
4 years ago
4 changed files with 16 additions and 6 deletions
@ -1,3 +1,4 @@ |
|||
.venv* |
|||
venv* |
|||
print/__pycache__* |
|||
*__pycache__* |
|||
*.pyc |
|||
|
@ -1,11 +1,14 @@ |
|||
# Force these recipes to run at every make request
|
|||
.PHONY: screen print |
|||
|
|||
setup: |
|||
@python3 -m venv .venv && \
|
|||
.venv/bin/pip install -r requirements.txt |
|||
|
|||
screen: |
|||
@cd screen && \
|
|||
.venv/bin/python televex.py |
|||
../.venv/bin/python televex.py |
|||
|
|||
print: |
|||
$cd print && \
|
|||
.venv/bin/python start.py |
|||
@cd print && \
|
|||
../.venv/bin/python start.py |
|||
|
Loading…
Reference in new issue