diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2020-02-12 21:28:52 +0100 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2020-02-12 21:28:52 +0100 |
| commit | b4072e0ba9f92dea528d08ec16329e13ee8ca0d4 (patch) | |
| tree | 90b03c331f3ac1805224a74dd63561efee563872 /labb/experimentell-problemlösning/Makefile | |
| parent | 7e4d52b512d9134274f734062d3d5b4b91165208 (diff) | |
| download | tfya81-b4072e0ba9f92dea528d08ec16329e13ee8ca0d4.tar.gz | |
wip experimentell problemlösning
Diffstat (limited to 'labb/experimentell-problemlösning/Makefile')
| -rw-r--r-- | labb/experimentell-problemlösning/Makefile | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/labb/experimentell-problemlösning/Makefile b/labb/experimentell-problemlösning/Makefile new file mode 100644 index 0000000..c45c482 --- /dev/null +++ b/labb/experimentell-problemlösning/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: clean #TODO add "all" + +# 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: fig.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. + +#fig.pdf: fig.tex +# latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make fig.tex; open fig.pdf + +clean: + latexmk -CA |
