bachelor_thesis/notes/Makefile

29 lines
465 B
Makefile
Raw Permalink Normal View History

2019-10-11 09:47:17 +00:00
latex=xelatex
pdflatex=xelatex
bibtex=bibtex
chapters = chapters/introduction.tex \
2019-10-16 05:37:49 +00:00
chapters/naive_simulator.tex \
2019-11-01 18:07:45 +00:00
chapters/introduction_qc.tex \
2019-12-06 17:27:36 +00:00
chapters/stabilizer.tex \
2019-11-01 18:07:45 +00:00
chapters/graph_simulator.tex
2019-10-11 09:47:17 +00:00
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
2019-10-17 17:32:25 +00:00
-rm main.bbl