8 lines
473 B
Makefile
Raw Normal View History

2022-04-09 22:08:26 +02:00
all:
pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate table of contents (ToC)
2022-05-19 11:08:05 +02:00
bibtex main.aux
2022-04-09 22:08:26 +02:00
pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate ToC page indices taking account the new ToC file
pdflatex -interaction errorstopmode -halt-on-error main.tex # Generate PDF with new ToC
2022-08-05 21:42:46 +02:00
rm -f appendix/*.aux dexes/*.aux chapters/*.aux *.aux *.bbl *.blg *.lof *.log *.lot *.toc *.tps *.out *.fdb_latexmk *.fls # Remove cache files
2022-04-09 22:08:26 +02:00