From 0c40f3ced65d06f470867091e798052726ac6d05 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 19:45:58 +0000 Subject: [PATCH] fix: update test_stress.c to use dispatcher API and update makefile dependencies Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index d8e0a61..d3f5b16 100644 --- a/makefile +++ b/makefile @@ -22,13 +22,13 @@ test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o test_double_process: test_double_process.o engine.o transport.o wav_io.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_stress: test_stress.o engine.o transport.o wav_io.o +test_stress: test_stress.o dispatcher.o transport.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_wav_io: test_wav_io.o wav_io.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_stress.o: test_stress.c engine.h tui.h transport.h +test_stress.o: test_stress.c dispatcher.h transport.h $(CC) $(CFLAGS) -c -o $@ $< main.o: main.c engine.h tui.h transport.h