From 498cd1d143599e67144c4b1c9a1fce2dfbd15477 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Sun, 11 Nov 2018 16:52:27 -0300 Subject: [PATCH] add bubble sort and timer to makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ba049cd..3ada494 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ CC=gcc CFLAGS=-Wall -Isrc/include -DDEBUG -g #LDFLAGS=-lm -SRC=src/sort.c src/random.c +SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c OBJ=$(SRC:.c=.o) all: sort informe