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
This commit is contained in:
Robert Schadek
2022-12-16 14:12:47 +01:00
committed by GitHub
parent eafd1caed6
commit 0485e0c490

19
book/makefile Normal file
View File

@@ -0,0 +1,19 @@
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