aboutsummaryrefslogtreecommitdiffhomepage
path: root/exams/mathe1/hauptklausur/makefile
diff options
context:
space:
mode:
authorMarvin Borner2023-01-05 17:39:23 +0100
committerMarvin Borner2023-01-05 17:49:58 +0100
commitf344cd067cc5829a3e76fd4b7d6779f2502428ea (patch)
treed19141324c115200879ec592cde0e12119ff789b /exams/mathe1/hauptklausur/makefile
Initial sync
Diffstat (limited to 'exams/mathe1/hauptklausur/makefile')
-rw-r--r--exams/mathe1/hauptklausur/makefile19
1 files changed, 19 insertions, 0 deletions
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