Also build dot sources

This commit is contained in:
Valentin Brandl 2019-12-10 20:35:39 +01:00
parent 300690bd82
commit 79e07b4387
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -1,11 +1,17 @@
.PHONY: clean build .PHONY: clean build dot
build: 01paper.pdf build: 01paper.pdf
%.pdf: %.tex bibliography.bib acronyms.tex %.pdf: %.tex bibliography.bib acronyms.tex dot
latexmk -shell-escape -pdf $< -f latexmk -shell-escape -pdf $< -f
clean: clean: clean_dot
rm -rf *.acn *.acr *.alg *.aux *.bbl *.blg *.clg *.cyg *.cyi *.fdb_latexmk \ rm -rf *.acn *.acr *.alg *.aux *.bbl *.blg *.clg *.cyg *.cyi *.fdb_latexmk \
*.fls *.glg *.glo *.gls *.ist *.log *.out *.pdf *.slg *.syg *.syi *.bcf \ *.fls *.glg *.glo *.gls *.ist *.log *.out *.pdf *.slg *.syg *.syi *.bcf \
*.dvi *.run.xml _minted-* *.pyg *.dvi *.run.xml _minted-* *.pyg
dot:
$(MAKE) -C ./dot
clean_dot:
$(MAKE) -C ./dot clean