From b9e64ac26aad05e85dd8fd290002b4aa7232b183 Mon Sep 17 00:00:00 2001 From: Tobias Eidelpes Date: Fri, 8 May 2020 17:07:22 +0200 Subject: [PATCH] Add Makefile --- paper/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 paper/Makefile diff --git a/paper/Makefile b/paper/Makefile new file mode 100644 index 0000000..2bcc1d5 --- /dev/null +++ b/paper/Makefile @@ -0,0 +1,17 @@ +PAPER=termpaper +SHELL=/bin/zsh + +all: + pdflatex $(PAPER).tex + bibtex $(PAPER) + pdflatex $(PAPER).tex + pdflatex $(PAPER).tex + +clean: + rm -f $(PAPER).aux $(PAPER).log $(PAPER).bbl $(PAPER).blg + +clean-all: clean + rm -f $(PAPER).pdf + +view: + zathura $(PAPER).pdf & disown