aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorEddy Pedroni <epedroni@pm.me>2025-02-24 20:25:10 +0100
committerEddy Pedroni <epedroni@pm.me>2025-02-24 20:25:10 +0100
commit0050c6a0022e28d2ecf24f11f409c0da2ef6bdf7 (patch)
tree6542347cb326a209445cf7c4523b67d5772b10fc /Makefile
parente0d9a87638241875ca5148b6fed9b9908180fe85 (diff)
Add gui to makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0a20ee2..13e51b6 100644
--- a/Makefile
+++ b/Makefile
@@ -17,4 +17,7 @@ clean:
uv pip install -r requirements.txt
touch .venv/touchfile
-.PHONY: all test clean
+gui: .venv/touchfile
+ ./.venv/bin/python web-project/src/solo_tool_web.py
+
+.PHONY: all test clean gui