From 08cd951ea8410bc87e316e6c11d34a118437ba8b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 13 Jul 2021 19:40:17 +0200 Subject: Added colloq summary and final presentation --- colloq/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 colloq/Makefile (limited to 'colloq/Makefile') 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 -- cgit v1.2.3