diff options
| author | Albin <albwa833@student.liu.se> | 2019-11-30 11:56:05 +0100 |
|---|---|---|
| committer | Albin <albwa833@student.liu.se> | 2019-11-30 11:56:05 +0100 |
| commit | abf84dc0d37bfa01a1e896934e2c78e8c70642a5 (patch) | |
| tree | faff828dda1e244540b4bb52c61fba3e39de30a6 | |
| parent | 781fde0140bf7b6f17b7ef1022cd308e675d6249 (diff) | |
| parent | f1a5630613419e17c042537158b1403a7fcd3d8a (diff) | |
| download | tfyy51-abf84dc0d37bfa01a1e896934e2c78e8c70642a5.tar.gz | |
Merge branch 'master' of https://gitlab.liu.se/vehsys/tfyy51/yc4_2019
| -rw-r--r-- | Dokument/Teknisk Dokumentation/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Dokument/Teknisk Dokumentation/Makefile b/Dokument/Teknisk Dokumentation/Makefile new file mode 100644 index 0000000..db2d036 --- /dev/null +++ b/Dokument/Teknisk Dokumentation/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: root.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: root.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. + +root.pdf: root.tex + latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make root.tex + +clean: + latexmk -CA |
