isa-family-tree/Makefile

16 lines
158 B
Makefile
Raw Permalink Normal View History

2022-06-20 01:55:54 +00:00
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