initial thesis stuff

This commit is contained in:
2019-10-11 11:47:17 +02:00
parent e72a1a118d
commit 2ed0792ded
7 changed files with 130 additions and 0 deletions

24
thesis/Makefile Normal file
View File

@@ -0,0 +1,24 @@
latex=xelatex
pdflatex=xelatex
bibtex=bibtex
chapters = chapters/introduction.tex \
chapters/naive_simulator.tex
all: main.pdf
main.pdf: main.tex main.bib $(chapters)
$(latex) main
$(bibtex) main
$(latex) main
$(pdflatex) main
clean:
-rm main.aux
-rm main.blg
-rm main.dvi
-rm main.log
-rm main.out
-rm main.pdf
-rm main.toc