diff options
author | Marvin Borner | 2021-07-13 19:40:17 +0200 |
---|---|---|
committer | Marvin Borner | 2021-07-13 19:40:17 +0200 |
commit | 08cd951ea8410bc87e316e6c11d34a118437ba8b (patch) | |
tree | f57baaee689ee81b590bb5d01df3591da10cccc7 /colloq/Makefile | |
parent | 1b429c0fc28e5cd8b474ad5a1de1fa6f3d7c2e2a (diff) |
Added colloq summary and final presentation
Diffstat (limited to 'colloq/Makefile')
-rw-r--r-- | colloq/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/colloq/Makefile b/colloq/Makefile new file mode 100644 index 0000000..ee5b649 --- /dev/null +++ b/colloq/Makefile @@ -0,0 +1,19 @@ +CC = xelatex +BIB = biber +VIEW = zathura + +all: + @mkdir -p build/ + @$(CC) --output-directory=build/ --shell-escape main + +full: clean + @mkdir -p build/ + @$(CC) --output-directory=build/ --shell-escape main + @$(BIB) --input-directory=build/ main + @$(CC) --output-directory=build/ --shell-escape main + +clean: + @$(RM) -rf build + +run: clean all + @$(VIEW) build/main.pdf |