feat: add TUI client with FIFO communication and status display

This commit is contained in:
Loic Coenen
2026-05-14 17:22:02 +00:00
committed by Loic Coenen (aider)
parent 5341cb676a
commit 971372eac9
19 changed files with 382 additions and 111 deletions

View File

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