Files
the-sourdough-framework/book/makefile
Robert Schadek 0485e0c490 A tiny makefile (#22)
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
2022-12-16 14:12:47 +01:00

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