bachelor_thesis/thesis/Makefile

39 lines
799 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 \
2020-03-19 08:41:33 +00:00
chapters/implementation.tex \
2020-03-25 17:46:32 +00:00
chapters/conclusion.tex \
chapters/appendix.tex
2020-01-13 12:57:05 +00:00
2020-02-01 09:27:51 +00:00
cover=cover.png
2020-03-26 20:35:30 +00:00
graphics=graphics/graph_high_linear_regime.png \
graphics/graph_high_linear_regime_cut.png \
graphics/graph_intermediate_regime.png \
graphics/graph_intermediate_regime_cut.png \
graphics/graph_low_linear_regime.png
other=extra_benchmark/benchmark.py
2020-02-01 09:27:51 +00:00
2020-01-13 12:57:05 +00:00
all: main.pdf
2020-03-26 20:35:30 +00:00
main.pdf: main.tex main.bib $(cover) $(chapters) $(graphics) $(other)
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