default: all
DOT ?= dot
isa-tree.%: isa.dot
$(DOT) -T$* "$<" > "$@"
all: isa-tree.png isa-tree.svg
clean:
$(RM) isa-tree.*
.PHONY: all default clean