delete latex temp files recursively

This commit is contained in:
Chris Cromer 2021-07-26 01:05:00 -04:00
parent 8ce7cd9769
commit 9ce64c75d6
1 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,11 @@ report:
pdflatex -synctex=1 -interaction=nonstopmode "Informe.tex"
clean:
rm -f *.log *.toc *.gz *.aux sections/*.aux *.out Informe.pdf
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 {} +
.PHONY: all report clean