MàJ du Makefile + test

This commit is contained in:
Valentin Moguérou 2024-04-16 00:18:24 +02:00
parent e29c0b21c5
commit d4f0d54bc8
1 changed files with 4 additions and 1 deletions

View File

@ -5,7 +5,10 @@ LFLAGS=
all: bin/main 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) bin/main: bin $(OBJECTS)
$(CC) -o $@ $(LFLAGS) $(FLAGS) $(OBJECTS) $(CC) -o $@ $(LFLAGS) $(FLAGS) $(OBJECTS)