redirect #17

Merged
cromer merged 22 commits from redirect into master 2021-07-27 23:36:31 -04:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 9ce64c75d6 - Show all commits

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