redirect #17

Merged
cromer merged 22 commits from redirect into master 2021-07-27 23:36:31 -04:00
2 changed files with 5 additions and 3 deletions
Showing only changes of commit 96b6d766b2 - Show all commits

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