use case diagram

This commit is contained in:
Debucquoy
2023-11-17 16:10:39 +01:00
parent 3b2f4c84d7
commit c4e193e45f
7 changed files with 178 additions and 2 deletions

View File

@ -2,7 +2,10 @@
CC = gcc
CFLAGS = -g -Wall
all: ex1 ex2 ex3 ex4 ex5
all: ex1 ex2 ex3 ex4 ex5 ex6 ex7 group
group: group.o mergeSort.o
$(CC) $(CFLAGS) -o $@ $+
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
@ -16,7 +19,7 @@ clean:
mrproper: clean
rm -f ex1
run: ex6
run: group
./$<
graph: run