started working on the thesis
This commit is contained in:
24
thesis/Makefile
Normal file
24
thesis/Makefile
Normal 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
|
Reference in New Issue
Block a user