From f344cd067cc5829a3e76fd4b7d6779f2502428ea Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 5 Jan 2023 17:39:23 +0100 Subject: Initial sync --- exams/mathe1/hauptklausur/makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 exams/mathe1/hauptklausur/makefile (limited to 'exams/mathe1/hauptklausur/makefile') diff --git a/exams/mathe1/hauptklausur/makefile b/exams/mathe1/hauptklausur/makefile new file mode 100644 index 0000000..4c73ad2 --- /dev/null +++ b/exams/mathe1/hauptklausur/makefile @@ -0,0 +1,19 @@ +CC = xelatex +BIB = biber +VIEW = zathura + +all: + @mkdir -p build/ + @$(CC) --output-directory=build/ main + +full: clean + @mkdir -p build/ + @$(CC) --output-directory=build/ main + @$(BIB) --input-directory=build/ main + @$(CC) --output-directory=build/ main + +clean: + @$(RM) -rf build + +run: clean all + @$(VIEW) build/main.pdf -- cgit v1.2.3