2021-07-23 12:14:58 -04:00
|
|
|
all: report
|
|
|
|
|
|
|
|
report:
|
2021-06-19 17:54:33 -04:00
|
|
|
# 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:
|
2021-07-26 01:05:00 -04:00
|
|
|
rm -f Informe.pdf
|
|
|
|
find . -type f -name '*.log' -exec rm {} +
|
|
|
|
find . -type f -name '*.toc' -exec rm {} +
|
|
|
|
find . -type f -name '*.gz' -exec rm {} +
|
|
|
|
find . -type f -name '*.aux' -exec rm {} +
|
|
|
|
find . -type f -name '*.out' -exec rm {} +
|
2021-06-19 17:54:33 -04:00
|
|
|
|
2021-07-23 12:14:58 -04:00
|
|
|
.PHONY: all report clean
|