```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) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-01 14:12:49 +00:00
parent 4d76b88377
commit b46f1c1b70

View File

@@ -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)