sort/Makefile

36 lines
685 B
Makefile
Raw Normal View History

2018-11-05 15:04:04 -03:00
CC=gcc
2018-11-11 13:44:24 -03:00
CFLAGS=-Wall -Isrc/include -DDEBUG -g
2018-11-05 15:04:04 -03:00
#LDFLAGS=-lm
2018-11-17 11:55:26 -03:00
SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c src/count_sort.c src/quick_sort.c src/merge_sort.c src/bitonic_sort.c src/selection_sort.c
2018-11-05 15:04:04 -03:00
OBJ=$(SRC:.c=.o)
all: sort informe
2018-11-05 15:04:04 -03:00
sort: $(OBJ)
$(CC) -o $@ $^ $(LDFLAGS)
2018-11-06 14:06:23 -03:00
informe:
# if pdflatex is installed create the informe
ifneq (, $(shell which pdflatex))
2018-11-06 14:06:23 -03:00
make -C doc
mv doc/Informe.pdf Informe.pdf
endif
2018-11-06 14:06:23 -03:00
2018-11-11 18:20:01 -03:00
test:
make -C test
test/test
clean: cleansort cleaninforme cleantest
cleansort:
2018-11-07 14:48:14 -03:00
rm -f src/*.o sort
cleaninforme:
2018-11-06 14:06:23 -03:00
make -C doc clean
2018-11-07 14:48:14 -03:00
rm -f Informe.pdf
2018-11-06 14:06:23 -03:00
2018-11-11 18:20:01 -03:00
cleantest:
make -C test clean
.PHONY: all sort informe test clean cleansort cleaninforme cleantest