From 7060e0222b1255d93b801ba4f8cd7f6c7361e206 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 19:04:49 +0000 Subject: [PATCH] fix: add missing dispatcher.o dependency to test_cli target Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 47ab827..d8e0a61 100644 --- a/makefile +++ b/makefile @@ -16,7 +16,7 @@ test_tui: test_tui.o engine.o transport.o wav_io.o dispatcher.o test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o wav_io.o dispatcher.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_cli: test_cli.o engine.o cli.o transport.o wav_io.o +test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_double_process: test_double_process.o engine.o transport.o wav_io.o