FILES=architecture.png

.PHONY: all
all: $(FILES)

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

%.png: %.dot
	dot -Tpng $< > $@

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