Skip to content

VOID404/makedot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Makedot

Util for making dot graphs from Makefiles, with support for make command inside.

Example call inside application-connector-manager:

makedot ./hack/ci/Makefile | dot -T svg -o ./graph.svg

graph of dependencies

Downloading binary

Binaries are attached to releases. Direct downloads for various targets can be found under: https://github.com/VOID404/makedot/releases/latest/download/makedot-x86_64-unknown-linux-gnu.tar.gz

Building from source

# optionally select tag with --branch v0.1.0 
git clone --depth 1 https://github.com/VOID404/makedot.git
cargo build --release
./target/release/makedot

Alternatively you can build inside docker:

docker build --output=./target/release .
./target/release/makedot