FILES=graph.svg

.PHONY: all
all: $(FILES)

%.svg: %.dot
	dot -Tsvg $< > $@

.PHONY: clean
clean:
	rm -f $(FILES)
