diff options
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 |