sort/test/Makefile

16 lines
273 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-13 12:20:01 -03:00
OBJ+=../src/random.o ../src/bubble_sort.o ../src/timer.o ../src/count_sort.o ../src/quick_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