update report in makefiles

This commit is contained in:
Chris Cromer 2021-07-23 12:14:58 -04:00
parent e11bf0ea6c
commit 96b6d766b2
2 changed files with 5 additions and 3 deletions

View File

@ -20,7 +20,7 @@ else ifneq (, $(shell which pdftex))
mv doc/Informe.pdf Informe.pdf
endif
clean: cleanshell cleaninforme
clean: cleanshell cleanreport
cleanshell:
rm -f src/*.o $(FILENAME)

View File

@ -1,4 +1,6 @@
informe:
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"
@ -6,4 +8,4 @@ informe:
clean:
rm -f *.log *.toc *.gz *.aux sections/*.aux *.out Informe.pdf
.PHONY: informe clean
.PHONY: all report clean