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-11 16:52:27 -03:00
|
|
|
SRC=src/sort.c src/random.c src/bubble_sort.c src/timer.c
|
2018-11-05 15:04:04 -03:00
|
|
|
OBJ=$(SRC:.c=.o)
|
|
|
|
|
2018-11-06 14:31:13 -03:00
|
|
|
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:
|
2018-11-06 14:31:13 -03:00
|
|
|
# if pdflatex is installed create the informe
|
|
|
|
ifneq (, $(shell which pdflatex))
|
2018-11-06 14:06:23 -03:00
|
|
|
make -C doc
|
2018-11-06 14:31:13 -03:00
|
|
|
mv doc/Informe.pdf Informe.pdf
|
|
|
|
endif
|
2018-11-06 14:06:23 -03:00
|
|
|
|
2018-11-06 14:34:22 -03:00
|
|
|
clean: cleansort cleaninforme
|
|
|
|
|
|
|
|
cleansort:
|
2018-11-07 14:48:14 -03:00
|
|
|
rm -f src/*.o sort
|
2018-11-06 14:34:22 -03:00
|
|
|
|
|
|
|
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-06 14:34:22 -03:00
|
|
|
.PHONY: all sort informe clean cleansort cleaninforme
|