Add bubble sort #8

Merged
cromer merged 16 commits from bubblesort into master 2018-11-11 19:17:20 -03:00
1 changed files with 1 additions and 2 deletions
Showing only changes of commit 385f97c07c - Show all commits

View File

@ -1,6 +1,5 @@
CC=gcc
CFLAGS=-Wall -Werror
CPPFLAGS+=-Isrc/include
CFLAGS=-Wall -Isrc/include -DDEBUG -g
#LDFLAGS=-lm
SRC=src/sort.c src/random.c
OBJ=$(SRC:.c=.o)