From 4783f398a26e123984670c1528c6872bd60a3f4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sun, 8 Dec 2019 21:48:54 +0100 Subject: =?UTF-8?q?L=C3=A4gg=20till=20ram=20f=C3=B6r=20efterstudie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dokument/efterstudie/Makefile | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Dokument/efterstudie/Makefile (limited to 'Dokument/efterstudie/Makefile') diff --git a/Dokument/efterstudie/Makefile b/Dokument/efterstudie/Makefile new file mode 100644 index 0000000..72f002a --- /dev/null +++ b/Dokument/efterstudie/Makefile @@ -0,0 +1,36 @@ +# 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: efterstudie.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: efterstudie.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. +# "raw2tex" and "dat2tex" are just placeholders for whatever custom steps +# you might have. + +%.tex: %.raw + ./raw2tex $< > $@ + +%.tex: %.dat + ./dat2tex $< > $@ + +# 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. + +efterstudie.pdf: efterstudie.tex + latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make efterstudie.tex + +clean: + latexmk -CA -- cgit v1.2.1