sort/Makefile

30 lines
482 B
Makefile
Raw Normal View History

2018-11-05 15:04:04 -03:00
CC=gcc
CFLAGS=-Wall -Werror
CPPFLAGS+=-Isrc/include
#LDFLAGS=-lm
2018-11-07 14:46:42 -03:00
SRC=src/sort.c src/random.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
clean: cleansort cleaninforme
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
.PHONY: all sort informe clean cleansort cleaninforme