Add makefile

This commit is contained in:
Nico Schottelius 2019-07-30 14:45:14 +02:00
parent 0fc5a5280d
commit fd72417487
3 changed files with 14 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.png

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
all: ucloud-networking.png ucloud-vm-states.png
%.png: %.dot
echo dot -Tpng < $< > $@

9
ucloud-ipv6-networks.dot Normal file
View File

@ -0,0 +1,9 @@
digraph G {
ucloud_api [shape=box];
ucloud_router [shape=box];
ucloud_nat64 [shape=box];
ucloud_api -> REQUEST_SLASH_64 [label="Requested by user" style="dotted"];
ucloud_router -> HAS_SLASH_64 [label="Requested by user" style="dotted"];
}