1all: overview.svg 2 3build/bin/svgbob: 4 cargo install --git https://github.com/ivanceras/svgbob --rev df01674c47350665158ececa476e63f51c58a9c7 --root build 5 6%.svg: %.ascii build/bin/svgbob 7 build/bin/svgbob $< > $@ 8 9clean: 10 rm -f *.svg 11 12.PHONY: all clean 13