.PHONY: build build: dst .WAIT \ dst/system_arch.svg \ dst/news_module.svg export: exports .WAIT \ exports/system_arch.svg \ exports/news_module.svg dst: mkdir dst exports: mkdir exports dst/%.svg: %.dot dot -Tsvg $< > $@ exports/%.svg: dst/%.svg svgcleaner $< $@ .PHONY: clean clean: rm -rf dst