started working on the thesis

This commit is contained in:
2020-01-13 13:57:05 +01:00
parent f47bbd6c9e
commit 5f9fc69470
4 changed files with 134 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
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
-rm main.bbl