Agregación de Quick_Sort

This commit is contained in:
2018-11-13 11:59:21 -03:00
parent b1a97f34d9
commit 047cc09008
6 changed files with 79 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
CC=gcc
CFLAGS=-Wall -Isrc/include -DDEBUG -g
#LDFLAGS=-lm
SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c
SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c src/quick_sort.c
OBJ=$(SRC:.c=.o)
all: sort informe