From 2fcc108171f9f225a7d01461bce188ddd3b789f1 Mon Sep 17 00:00:00 2001 From: praticamentetilde Date: Fri, 15 Jun 2018 13:31:42 +0200 Subject: [PATCH] Added makefile --- Makefile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4932019 --- /dev/null +++ b/Makefile @@ -0,0 +1,34 @@ +# You want latexmk to *always* run, because make does not have all the info. +# Also, include non-file targets in .PHONY so they are run regardless of any +# file of the given name existing. +.PHONY: english.pdf italian.pdf all clean + +# The first rule in a Makefile is the one executed by default ("make"). It +# should always be the "all" rule, so that "make" and "make all" are identical. +all: english.pdf italian.pdf + +# CUSTOM BUILD RULES + +# In case you didn't know, '$@' is a variable holding the name of the target, +# and '$<' is a variable holding the (first) dependency of a rule. + +# MAIN LATEXMK RULE + +# -pdf tells latexmk to generate PDF directly (instead of DVI). +# -pdflatex="" tells latexmk to call a specific backend with specific options. +# -use-make tells latexmk to call make for generating missing files. + +# -interaction=nonstopmode keeps the pdflatex backend from stopping at a +# missing file reference and interactively asking you for an alternative. + +english.pdf: english.tex + latexmk -pdf -pdflatex="pdflatex %O --shell-escape %S" \ + -bibtex english.tex + +italian.pdf: italian.tex + latexmk -pdf -pdflatex="pdflatex %O --shell-escape %S" \ + -bibtex italian.tex + +clean: + @rm -rf *.aux *.bbl *.bcf *.blg *.lof *.log *.lol *.out *.run.xml \ + *.toc texput.log comment.cut svg-inkscape *.fls *.pdf *.fdb_latexmk