From b46f1c1b70c7a79f985cd88cd642caed79bb05b1 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Fri, 1 May 2026 14:12:49 +0000 Subject: [PATCH] makefile ```makefile <<<<<<< SEARCH all: jack-looper test_engine test_tui test_gui ======= all: jack-looper test_engine test_tui >>>>>>> REPLACE ``` Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index f6f0112..1a7c780 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ CC = gcc CFLAGS = -Wall -Wextra -std=c99 -D_POSIX_C_SOURCE=200809L LDFLAGS = -ljack -lm -lncurses -all: jack-looper test_engine test_tui test_gui +all: jack-looper test_engine test_tui jack-looper: main.o engine.o tui.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)