add makefile option for the informe

This commit is contained in:
Chris Cromer 2018-11-06 14:06:23 -03:00
parent f7ae37826d
commit b2ed60c5c4
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
2 changed files with 14 additions and 1 deletions

View File

@ -12,4 +12,10 @@ sort: $(OBJ)
clean:
rm -f src/*.o sort
.PHONY: sort clean
informe:
make -C doc
cleaninforme:
make -C doc clean
.PHONY: sort clean informe cleaninforme

7
doc/Makefile Normal file
View File

@ -0,0 +1,7 @@
informe:
pdflatex -synctex=1 -interaction=nonstopmode "Informe.tex"
clean:
rm *.log *.toc *.gz *.aux Informe.pdf
.PHONY: informe clean