From 2b35be36fbe0eb04bcd5564302c7074361565be8 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Thu, 7 May 2026 21:17:51 +0000 Subject: [PATCH] fix: link JACK and math libraries in integration test build Co-authored-by: aider (deepseek/deepseek-reasoner) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 5182044..fd35af3 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ looper: src/main.c $(CC) $(CFLAGS) -o looper src/main.c $(LDFLAGS) integration: looper tests/integration.c - $(CC) $(CFLAGS) -o integration_test tests/integration.c + $(CC) $(CFLAGS) -o integration_test tests/integration.c -ljack -lm ./integration_test .PHONY: clean integration