mirror of
https://github.com/hendricius/the-sourdough-framework
synced 2025-11-21 10:31:12 -06:00
24 lines
313 B
Makefile
24 lines
313 B
Makefile
all:
|
|
pdflatex book.tex
|
|
biber book
|
|
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
|
|
|
|
release:
|
|
rm -rf release
|
|
mkdir release
|
|
cp book.pdf release/TheBreadCode-The-Sourdough-Framework.pdf
|