dot_files := $(wildcard *.gv)
svg_files := $(patsubst %.gv,%.svg,${dot_files})

all: ${svg_files}

%.svg: %.gv
	dot -Tsvg -o$@ $<
