fix: add missing carla.o dependency to test_cli and test_stress targets

Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-02 21:45:24 +00:00
parent ab2b440724
commit 1f095acd86

View File

@@ -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