Add slides, because the presentation is acutally in 4 hours

This commit is contained in:
sk4nz
2022-09-18 12:32:23 +02:00
parent 9b91ef0407
commit c20e9ddd6c
13 changed files with 1536 additions and 3 deletions

18
slides/Makefile Normal file
View File

@@ -0,0 +1,18 @@
.PHONY: clean read
SOURCE=trusting-make
all: $(SOURCE).pdf read
$(SOURCE).pdf:
pdflatex -interaction=nonstopmode -shell-escape $(SOURCE).tex
pdflatex -interaction=nonstopmode -shell-escape $(SOURCE).tex
clean:
-rm $(SOURCE).pdf $(SOURCE).run.xml $(SOURCE).bcf > /dev/null 2>&1
-rm *~ .log *.backup *.aux *.toc *.blg *.log *.out *.bbl *.dvi *.nav *.pyg *.snm *.lof *.vrb > /dev/null 2>&1
-rm -rf _minted-$(SOURCE) > /dev/null 2>&1
read:
evince $(SOURCE).pdf > /dev/null 2>&1 &