diff options
author | Marvin Borner | 2023-04-28 16:55:19 +0200 |
---|---|---|
committer | Marvin Borner | 2023-04-28 16:55:19 +0200 |
commit | 4eac79f861ca58a72c464c5ec56d9bd732e39cf0 (patch) | |
tree | d197e050670c81412dec274f874d464da4a8b992 /exams/mathe1/hauptklausur/makefile | |
parent | 23f0826852c85ea439d4629de13da9cf1d4668f9 (diff) |
removed protocols
Diffstat (limited to 'exams/mathe1/hauptklausur/makefile')
-rw-r--r-- | exams/mathe1/hauptklausur/makefile | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/exams/mathe1/hauptklausur/makefile b/exams/mathe1/hauptklausur/makefile deleted file mode 100644 index 4c73ad2..0000000 --- a/exams/mathe1/hauptklausur/makefile +++ /dev/null @@ -1,19 +0,0 @@ -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 |