From 7e7b12c89a1acc3bda4d44af05d02d08accfe0f5 Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Thu, 7 May 2026 22:09:59 +0000 Subject: [PATCH] makefile ```makefile <<<<<<< SEARCH .PHONY: clean integration ======= .PHONY: clean integration test >>>>>>> REPLACE ``` makefile ```makefile <<<<<<< SEARCH ./integration_test ======= ./integration_test test: integration >>>>>>> REPLACE ``` Co-authored-by: aider (deepseek/deepseek-reasoner) --- makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index fd35af3..cbed4a8 100644 --- a/makefile +++ b/makefile @@ -9,6 +9,8 @@ integration: looper tests/integration.c $(CC) $(CFLAGS) -o integration_test tests/integration.c -ljack -lm ./integration_test -.PHONY: clean integration + test: integration + +.PHONY: clean integration test clean: rm -f looper integration_test