From 1f095acd8673129970740a067b127cc7ea0c105b Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 21:45:24 +0000 Subject: [PATCH] fix: add missing carla.o dependency to test_cli and test_stress targets Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index afa769f..5ca8ed4 100644 --- a/makefile +++ b/makefile @@ -16,13 +16,13 @@ test_tui: test_tui.o engine.o transport.o wav_io.o dispatcher.o carla.o test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o wav_io.o dispatcher.o carla.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o +test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o carla.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) 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 wav_io.o dispatcher.o +test_stress: test_stress.o engine.o wav_io.o dispatcher.o carla.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_wav_io: test_wav_io.o wav_io.o