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

@ -0,0 +1,18 @@
.PHONY: clean, all
CC = gcc
CFLAGS = -g -Wall
all: group
%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<
group: group.o mergeSort.o
$(CC) $(CFLAGS) -o $@ $+ $(LDFLAGS)
clean:
rm -f *.o core.*
rm -f group
run: group
./$<