fix: link JACK and math libraries in integration test build

Co-authored-by: aider (deepseek/deepseek-reasoner) <aider@aider.chat>
This commit is contained in:
Loic Coenen
2026-05-07 21:17:51 +00:00
parent 4b9ee29d8e
commit 2b35be36fb

View File

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