chore: add SDL2 graph build targets and replace tikker keycode table with sparse array

This commit is contained in:
2024-12-16 11:48:00 +00:00
parent f25b81cb75
commit e60484d802
3 changed files with 71 additions and 7 deletions
+8
View File
@@ -14,3 +14,11 @@ ensure_env:
plot: ensure_env
$(PYTHON) plot.py
graph: graph.c
gcc -o graph graph.c -I/usr/include/SDL2 -L/usr/lib -lSDL2
./graph
graph2: graph2.c
gcc -o graph2 graph2.c -I/usr/include/SDL2 -L/usr/lib -lSDL2
./graph2