Add first slides and continue report

This commit is contained in:
Skia
2017-01-12 13:22:35 +01:00
parent 2ed566b75c
commit 3cac563389
11 changed files with 1217 additions and 10 deletions

View File

@ -0,0 +1,18 @@
LATEX := pdflatex
TARGET := slide.pdf
.PHONY: all clean distclean
all: $(TARGET) clean
%.pdf: %.tex
echo "Building pdf"
$(LATEX) --shell-escape $<
rm -f $@
$(LATEX) --shell-escape $<
clean:
rm -f *.log *.nav *.snm *.aux *.out *.toc *.pyg
distclean: clean
rm -f $(TARGET)