Proyecto de ordenamiento para el curso de Análisis y Diseño de Algoritmos.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CC=gcc
|
|
CFLAGS=-Wall -I../src/include -DDEBUG -g
|
|
SRC=test.c
|
|
OBJ=$(SRC:.c=.o)
|
|
OBJ+=../src/random.o ../src/bubble_sort.o ../src/timer.o
|
|
|
|
all: test
|
|
|
|
test: $(OBJ)
|
|
$(CC) -o $@ $^ $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f *.o test
|
|
|
|
.PHONY: all test clean
|
|
|