12 lines
290 B
Makefile
12 lines
290 B
Makefile
all: report
|
|
|
|
report:
|
|
# we do this twice to make sure the toc is updated
|
|
pdflatex -synctex=1 -interaction=nonstopmode "Informe.tex"
|
|
pdflatex -synctex=1 -interaction=nonstopmode "Informe.tex"
|
|
|
|
clean:
|
|
rm -f *.log *.toc *.gz *.aux sections/*.aux *.out Informe.pdf
|
|
|
|
.PHONY: all report clean
|