add bubble sort and timer to makefile

This commit is contained in:
Chris Cromer 2018-11-11 16:52:27 -03:00
parent 5b77033905
commit 498cd1d143
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
1 changed files with 1 additions and 1 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=src/sort.c src/random.c src/bubble_sort.c src/timer.c
OBJ=$(SRC:.c=.o)
all: sort informe