10 lines
167 B
Makefile
10 lines
167 B
Makefile
#! make
|
|
|
|
default: run
|
|
|
|
setup:
|
|
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
|
|
|
|
run:
|
|
@.venv/bin/python octomode.py
|