From bd5fd59b7b37dca5c65f2dbee3e6c8ce536c0175 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 9 May 2026 22:51:13 +0000 Subject: [PATCH] fix: add missing source files to build Co-authored-by: aider (deepseek/deepseek-reasoner) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index bc98f22..1488cce 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ CC ?= gcc CFLAGS ?= -Wall -Wextra -g -Isrc LDFLAGS ?= -ljack -lm -SRC = src/main.c src/looper.c src/channel.c src/midi.c +SRC = src/main.c src/looper.c src/channel.c src/midi.c src/queue.c src/pipe.c OBJ = $(SRC:.c=.o) looper: $(OBJ)