16 lines
158 B
Makefile
16 lines
158 B
Makefile
|
|
||
|
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
|
||
|
|