bachelor_thesis/thesis/Makefile

30 lines
454 B
Makefile
Raw Normal View History

2020-01-13 12:57:05 +00:00
latex=xelatex
pdflatex=xelatex
bibtex=bibtex
2020-01-22 14:35:47 +00:00
chapters=chapters/introduction.tex \
chapters/quantum_computing.tex \
2020-02-25 10:20:57 +00:00
chapters/stabilizer.tex \
chapters/implementation.tex
2020-01-13 12:57:05 +00:00
2020-02-01 09:27:51 +00:00
cover=cover.png
2020-01-13 12:57:05 +00:00
all: main.pdf
2020-02-01 09:27:51 +00:00
main.pdf: main.tex main.bib $(cover) $(chapters)
2020-01-13 12:57:05 +00:00
$(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