sort/test/Makefile

17 lines
328 B
Makefile
Raw Normal View History

2018-11-11 18:20:01 -03:00
CC=gcc
CFLAGS=-Wall -I../src/include -DDEBUG -g
SRC=test.c
OBJ=$(SRC:.c=.o)
2018-11-17 11:55:26 -03:00
2018-11-20 12:16:29 -03:00
OBJ+=../src/random.o ../src/bubble_sort.o ../src/counting_sort.o ../src/quick_sort.o ../src/merge_sort.o ../src/bitonic_sort.o ../src/selection_sort.o
2018-11-11 18:20:01 -03:00
all: test
test: $(OBJ)
$(CC) -o $@ $^ $(LDFLAGS)
clean:
rm -f *.o test
.PHONY: all test clean