From 0485e0c490bb193e750a9f06ac2239146abee889 Mon Sep 17 00:00:00 2001 From: Robert Schadek Date: Fri, 16 Dec 2022 14:12:47 +0100 Subject: [PATCH] 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 --- book/makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 book/makefile diff --git a/book/makefile b/book/makefile new file mode 100644 index 0000000..9da6aba --- /dev/null +++ b/book/makefile @@ -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