From d4f0d54bc87a2e01dc3709e76b21215e5e2100f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Mogu=C3=A9rou?= Date: Tue, 16 Apr 2024 00:18:24 +0200 Subject: [PATCH] =?UTF-8?q?M=C3=A0J=20du=20Makefile=20+=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e926582..c97fe61 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,10 @@ LFLAGS= all: bin/main -OBJECTS = obj/main.o obj/structure.o obj/display.o obj/algorithm.o +test: bin/main + bin/main MP2I-creneaux.txt 33 MP2I-colleurs.txt 16 6 15 output.csv + +OBJECTS = obj/structure.o obj/algorithm.o obj/display.o obj/main.o bin/main: bin $(OBJECTS) $(CC) -o $@ $(LFLAGS) $(FLAGS) $(OBJECTS)