feat: add client tests, status FIFO, and evaluation docs

This commit is contained in:
Loic Coenen
2026-05-14 14:12:50 +00:00
committed by Loic Coenen (aider)
parent 998406616a
commit 791744beeb
14 changed files with 333 additions and 83 deletions

View File

@@ -1,10 +1,15 @@
CC ?= gcc
CFLAGS ?= -Wall -Wextra -g -Isrc
LDFLAGS ?= -lncurses -lm
CC = gcc
CFLAGS = -Wall -Wextra -Wpedantic -std=c11
looper-client: src/tui.c main.c
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
all: test_status_parse
test_status_parse: tests/test_status_parse.c
$(CC) $(CFLAGS) -I../src -o test_status_parse tests/test_status_parse.c ../src/tui.c -lncurses
test: test_status_parse
./test_status_parse
.PHONY: all test clean
.PHONY: clean
clean:
rm -f looper-client
rm -f test_status_parse