2024-12-08 15:19:17 +00:00
|
|
|
all: tikker run
|
|
|
|
|
2024-12-08 19:32:40 +00:00
|
|
|
tikker: tikker.c sormc.h
|
|
|
|
gcc tikker.c -Ofast -Wall -Werror -Wextra -o tikker -lsqlite3
|
2024-12-08 15:19:17 +00:00
|
|
|
|
|
|
|
run:
|
|
|
|
./tikker
|
2024-12-15 15:05:21 +00:00
|
|
|
|
|
|
|
PYTHON="./.venv/bin/python"
|
|
|
|
|
|
|
|
ensure_env:
|
|
|
|
-@python3 -m venv .venv
|
|
|
|
|
|
|
|
plot: ensure_env
|
|
|
|
$(PYTHON) plot.py
|
|
|
|
|
2024-12-16 11:48:00 +00:00
|
|
|
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
|
|
|
|
|