12 lines
185 B
Makefile
12 lines
185 B
Makefile
|
setup:
|
||
|
@python3 -m venv .venv && \
|
||
|
.venv/bin/pip install -r requirements.txt
|
||
|
|
||
|
screen:
|
||
|
@cd screen && \
|
||
|
.venv/bin/python televex.py
|
||
|
|
||
|
print:
|
||
|
$cd print && \
|
||
|
.venv/bin/python start.py
|