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

16
engine/tests/makefile Normal file
View File

@@ -0,0 +1,16 @@
CC = gcc
CFLAGS = -Wall -Wextra -Wpedantic -std=c11 -I../src -I$(JACK_CFLAGS)
LDFLAGS = -ljack -lpthread -lm
all: test_status_fifo
test_status_fifo: test_status_fifo.c ../src/looper.c ../src/channel.c ../src/midi.c ../src/queue.c ../src/pipe.c
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test: test_status_fifo
./test_status_fifo
.PHONY: all test clean
clean:
rm -f test_status_fifo