Start the informe #3

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

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