feat: add initial JACK audio looper with MIDI control

Co-authored-by: aider (deepseek/deepseek-reasoner) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-07 20:11:05 +00:00
parent 14236b9312
commit 7014aa9e34
2 changed files with 141 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
CC ?= gcc
CFLAGS ?= -Wall -Wextra -g
LDFLAGS ?= -ljack
looper: src/main.c
$(CC) $(CFLAGS) -o looper src/main.c $(LDFLAGS)
.PHONY: clean
clean:
rm -f looper