This commit is contained in:
Debucquoy
2023-12-21 23:36:03 +01:00
parent 990b77ed18
commit babed7eb09
35 changed files with 11061 additions and 39 deletions

View File

@ -2,7 +2,9 @@
CC = gcc
CFLAGS = -g -Wall
all: ex1 ex2 ex3 ex4 ex5 ex6 ex7 group
SRC = ex1 ex2 ex3 ex4 ex5 ex6 ex7 group
all: $(SRC)
group: group.o mergeSort.o
$(CC) $(CFLAGS) -o $@ $+
@ -15,9 +17,8 @@ group: group.o mergeSort.o
clean:
rm -f *.o core.*
mrproper: clean
rm -f ex1
rm -f plot.png
rm -f $(SRC)
run: group
./$<