From 2ef21cdadd7f8389e15726b5ef326bba291149da Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Fri, 1 May 2026 14:37:47 +0000 Subject: [PATCH] fix: add missing cli.o to jack-looper 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 27b0855..a6b0753 100644 --- a/makefile +++ b/makefile @@ -4,7 +4,7 @@ LDFLAGS = -ljack -lm -lncurses all: jack-looper test_engine test_tui test_gui test_cli -jack-looper: main.o engine.o tui.o gui.o lib/microui.o +jack-looper: main.o engine.o tui.o gui.o cli.o lib/microui.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_engine: test_engine.o engine.o