Metadata-Version: 2.1
Name: makefile2dot
Version: 0.1.0
Summary: Create a graphviz graph of a Makefile.
Home-page: https://github.com/chadsgilbert/makefile2dot
Author: Chad Gilbert
Author-email: chad.s.gilbert@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: POSIX
Description-Content-Type: text/markdown

# A Visualizer for Makefiles

## DESCRIPTION

`makefile2dot` produces a Graphviz `dot` graph from a Makefile. To run it,
install `graphviz` and `python`. This version runs on python 3.

```bash
    sudo apt-get install graphviz python
```

## USAGE

`makefile2dot` writes to `stdout` by default, which can be read in by
`graphviz`. So the nice trick is to pipe output from `makefile2dot` directly in
to `dot`. The `Makefile` is read from `stdin` to support piping input as well.

Example usage:

````bash
    makefile2dot <Makefile | dot -Tpng > out.png
````


