13 lines
182 B
Makefile
13 lines
182 B
Makefile
|
all: organisations.svg
|
||
|
|
||
|
|
||
|
graph.dot: gen.sh
|
||
|
bash gen.sh graph.dot
|
||
|
|
||
|
|
||
|
organisations.svg: graph.dot
|
||
|
dot -Tsvg graph.dot -o organisations.svg
|
||
|
|
||
|
clean:
|
||
|
rm -f organisations.svg graph.dot
|