mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-17 16:41:12 -06:00
the makefile has three targets * all, which does the complete build * fast, which only runs pdflatex once * clean, that removes files generated by the makefile
20 lines
229 B
Makefile
20 lines
229 B
Makefile
all:
|
|
pdflatex book.tex
|
|
biber book
|
|
pdflatex book.tex
|
|
pdflatex book.tex
|
|
|
|
fast:
|
|
pdflatex book.tex
|
|
|
|
clean:
|
|
rm book.blg
|
|
rm book.bbl
|
|
rm book.aux
|
|
rm book.out
|
|
rm book.toc
|
|
rm book.run.xml
|
|
rm book.bcf
|
|
rm book.pdf
|
|
rm book.log
|