From 24f1cec191640cc4e856d9d90aadab6ec9e8d9b9 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 14:40:45 +0000 Subject: [PATCH] fix: add dispatcher.o to jack-looper build target Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 48d23df..0fae45b 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ LDFLAGS = -ljack -lm -lncurses -lpthread 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 lib/microui.o wav_io.o +jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/microui.o wav_io.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_engine: test_engine.o engine.o transport.o wav_io.o