Start the informe #3

Merged
cromer merged 8 commits from informe into master 2018-11-06 14:38:15 -03:00
1 changed files with 6 additions and 3 deletions
Showing only changes of commit 711ec338ce - Show all commits

View File

@ -2,7 +2,6 @@ CC=gcc
CFLAGS=-Wall -Werror
CPPFLAGS+=-Isrc/include
#LDFLAGS=-lm
ODIR=obj
SRC=src/sort.c
OBJ=$(SRC:.c=.o)
@ -18,8 +17,12 @@ ifneq (, $(shell which pdflatex))
mv doc/Informe.pdf Informe.pdf
endif
clean:
clean: cleansort cleaninforme
cleansort:
rm -f src/*.o sort Informe.pdf
cleaninforme:
make -C doc clean
.PHONY: all clean informe
.PHONY: all sort informe clean cleansort cleaninforme