merge changes

This commit is contained in:
2018-11-13 12:20:01 -03:00
6 changed files with 83 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/count_sort.c
SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c src/count_sort.c src/quick_sort.c
OBJ=$(SRC:.c=.o)
all: sort informe