master-thesis/doc/Makefile

19 lines
487 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 09:14:30 +00:00
all: all-graphviz
pdflatex $(FILE)
2019-08-08 12:08:07 +00:00
bibtex $(FILE)
2019-08-08 12:10:10 +00:00
makeindex Thesis.nlo -s nomencl.ist -o Thesis.nls
pdflatex $(FILE)
pdflatex $(FILE)
clean:
2019-08-12 10:13:59 +00:00
rm -f *.dvi *.log *.aux *.bbl *.blg *.toc *.lof *.lot *.cb *.~ *.ilg *.nlo *.nls *.out *.glo
2019-08-09 08:38:54 +00:00
all-graphviz:
for dot in graphviz/*.dot; do make $${dot%%.dot}.png; done
graphviz/%.png: graphviz/%.dot
dot -Tpng < $< > $@