mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-12-07 01:54:26 -06:00
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:
19
book/makefile
Normal file
19
book/makefile
Normal 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
|
||||
Reference in New Issue
Block a user