From 04d83053d5323734c34d09cbd835b04aefa5cebe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Thu, 13 Feb 2020 12:35:08 +0100 Subject: minor changes --- "labb/experimentell-probleml\303\266sning/Makefile" | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'labb/experimentell-problemlösning/Makefile') diff --git "a/labb/experimentell-probleml\303\266sning/Makefile" "b/labb/experimentell-probleml\303\266sning/Makefile" index c45c482..44761aa 100644 --- "a/labb/experimentell-probleml\303\266sning/Makefile" +++ "b/labb/experimentell-probleml\303\266sning/Makefile" @@ -1,12 +1,14 @@ # 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" +.PHONY: rapport 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 +rapport: rapport.pdf + # CUSTOM BUILD RULES # In case you didn't know, '$@' is a variable holding the name of the target, @@ -29,8 +31,8 @@ # -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 +rapport.pdf: rapport.tex + latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make rapport.tex; open rapport.pdf clean: latexmk -CA -- cgit v1.2.1