diff --git a/.gitignore b/.gitignore
index 67fa567f679ff24daf992a0d2b24821e43fba857..269b3dfac282852a428d6f030e970705a0e60526 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
 # Project specific
 presentation.pdf
+beamer-template.zip
 
 # Created by https://www.gitignore.io/api/visualstudiocode,linux,latex
 # Edit at https://www.gitignore.io/?templates=visualstudiocode,linux,latex
diff --git a/Makefile b/Makefile
index 379fdd9a01fe7b10a29d6db76a7b1e97e47a3f79..1dc5999d12514bfb656a12480f49a142dc8c55f7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,23 @@
+.PHONY: install
 install:
-	latexmk -pdf paper.tex
-	latexmk -c paper.tex
+	latexmk -pdf presentation.tex
+	latexmk -c presentation.tex
 
+.PHONY: watch
 watch:
-	latexmk -pvc paper.tex
+	latexmk -pvc presentation.tex
 
+.PHONY: clean
 clean:
-	latexmk -C paper.tex
+	latexmk -C presentation.tex
+	rm *.snm
+	rm *.nav
+	rm *.bbl
 
+.PHONY: bibtool
 bibtool:
 	bibtool -R -r keep_bibtex -r field -r improve -r sort_fld -s references.bib -o references.bib
 
+.PHONY: zip
 zip:
 	zip beamer-template -x *.git* -r .