12 lines
123 B
Makefile
12 lines
123 B
Makefile
all: bericht
|
|
|
|
%.pdf: %.tex
|
|
latexmk -pdf $<
|
|
|
|
%.pdf: %.dot
|
|
dot -Tpdf $< > $@
|
|
|
|
bericht.pdf: graph.pdf
|
|
|
|
bericht: bericht.pdf
|