I hate LaTeX

This commit is contained in:
2020-03-05 14:23:00 +01:00
parent 650d73ccca
commit 1a1c63bf26
3 changed files with 87 additions and 1 deletions

View File

@@ -2,16 +2,21 @@ latex=xelatex
pdflatex=xelatex
bibtex=bibtex
graph_pngs= graphs/valid_graph.png
all: main.pdf
main.pdf: main.tex #main.bib $(cover) $(chapters)
main.pdf: main.tex $(graph_pngs)
$(latex) main
#$(bibtex) main
$(latex) main
$(pdflatex) main
graphs/%.png: graphs/%.dot
dot $< -Tpng -o $@
clean:
-rm main.aux
@@ -22,3 +27,4 @@ clean:
-rm main.pdf
-rm main.toc
-rm main.bbl
-rm $(graph_pngs)