From eff628e1e62d2b4cade40120e3fd05fd77b794d0 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 21:42:25 +0000 Subject: [PATCH] fix: add missing carla.o to test_engine link target Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index a375747..b5518bd 100644 --- a/makefile +++ b/makefile @@ -7,7 +7,7 @@ all: jack-looper test_engine test_tui test_gui test_cli test_stress test_wav_io jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/microui.o wav_io.o carla.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_engine: test_engine.o engine.o transport.o wav_io.o dispatcher.o +test_engine: test_engine.o engine.o transport.o wav_io.o dispatcher.o carla.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_tui: test_tui.o engine.o transport.o wav_io.o dispatcher.o