From 85d91e7b177f04857bb39909bfc24a6e288e967f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Thu, 3 Feb 2022 12:32:07 +0100 Subject: [PATCH] better compile makefile --- tests/COMPILE_MAKEFILE | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/COMPILE_MAKEFILE b/tests/COMPILE_MAKEFILE index 768055d..1e96656 100644 --- a/tests/COMPILE_MAKEFILE +++ b/tests/COMPILE_MAKEFILE @@ -1,3 +1,11 @@ +once: + pdflatex test.tex + +clean: + latexmk -C test.tex + test: latexmk -dvi- -pdf -gg -Werror -latexoption=-interaction=nonstopmode test.tex latexmk -c test.tex + +.PHONY: once clean test