From 3b740722bf7bb2ac86f4becff40c2843ac0cd1a1 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 21:43:31 +0000 Subject: [PATCH] fix: add missing carla.o dependency to test_tui target Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index b5518bd..2bb1026 100644 --- a/makefile +++ b/makefile @@ -10,7 +10,7 @@ jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/micr 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 +test_tui: test_tui.o engine.o transport.o wav_io.o dispatcher.o carla.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_gui: test_gui.o gui.o engine.o transport.o lib/microui.o wav_io.o dispatcher.o