9 lines
79 B
Makefile
9 lines
79 B
Makefile
|
|
all: structs.png
|
|
|
|
%.png: %.dot
|
|
dot -o $@ -Tpng $<
|
|
|
|
clean:
|
|
rm -f structs.png
|