Archived
1
0

Initial commit: Datagraph generator for organisations/libraries/users

This commit is contained in:
2020-02-06 12:04:27 +01:00
commit 7f0b1cca4f
5 changed files with 92 additions and 0 deletions

12
orgas/Makefile Normal file
View File

@ -0,0 +1,12 @@
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