Make Make pretty.
This program intend to extend Make capabilities. Actually it parse a Makefile to produce a pretty help. See example below:
🚧 screenshot
To use Pretty Make you only have to add the following at the end of your Makefile:
```Makefile bin/pretty-make: @bash <(curl -Ls https://raw.githubusercontent.com/awea/pretty-make/master/scripts/install.sh)
.PHONY: help
help: bin/pretty-make @bin/pretty-make Makefile ```
First you have to install Pretty Make using the following command:
bash
cargo install pretty-make
Then you can use Pretty Make in your Makefile like this:
```Makefile .PHONY: help
help: @pretty-make Makefile ```
bash
make help
```Makefile
command: ...
another-command: ... ```
Contributions, issues and feature requests are welcome! See the list of contributors who participated in this project.
Pretty Make is licensed under the GNU General Public License v3.0.