Files
tikker/Makefile
T
retoor f5f0bc06df feat: add matplotlib-based line plot for user growth over time
The commit introduces a new plot function that visualizes user growth data using matplotlib. It creates a line chart with dates on the x-axis and user counts on the y-axis, including axis labels, a title, and a grid for improved readability. The plot is saved to a PNG file for documentation purposes.
2024-12-15 15:05:21 +00:00

17 lines
226 B
Makefile

all: tikker run
tikker: tikker.c sormc.h
gcc tikker.c -Ofast -Wall -Werror -Wextra -o tikker -lsqlite3
run:
./tikker
PYTHON="./.venv/bin/python"
ensure_env:
-@python3 -m venv .venv
plot: ensure_env
$(PYTHON) plot.py