fix: update test_stress.c to use dispatcher API and update makefile dependencies

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-02 19:45:58 +00:00
parent d41ba72b73
commit 0c40f3ced6

View File

@@ -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 test_double_process: test_double_process.o engine.o transport.o wav_io.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(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) $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
test_wav_io: test_wav_io.o wav_io.o test_wav_io: test_wav_io.o wav_io.o
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(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 $@ $< $(CC) $(CFLAGS) -c -o $@ $<
main.o: main.c engine.h tui.h transport.h main.o: main.c engine.h tui.h transport.h