master-thesis/doc/Makefile

19 lines
457 B
Makefile
Raw Normal View History

NOTE = !! change the next line to fit your filename; no spaces at file name end !!
FILE = Thesis
2019-08-09 11:14:30 +02:00
all: all-graphviz
pdflatex $(FILE)
2019-08-08 14:08:07 +02:00
bibtex $(FILE)
2019-08-08 14:10:10 +02:00
makeindex Thesis.nlo -s nomencl.ist -o Thesis.nls
pdflatex $(FILE)
pdflatex $(FILE)
clean:
rm -f *.dvi *.log *.aux *.bbl *.blg *.toc *.lof *.lot *.cb *.~
2019-08-09 10:38:54 +02:00
all-graphviz:
for dot in graphviz/*.dot; do make $${dot%%.dot}.png; done
graphviz/%.png: graphviz/%.dot
dot -Tpng < $< > $@