tuimake(graphical make) is a simple command line tool to use Makefile in interactive way.(Sample Makefile
in this repo is used in the below example)
- The tuimake is a command line tool to use with Makefile. It gets the targets and their description and shows it on TUI.
- First it gets all the targets and their description at the start from Makefile
- The target and their description must be in the following format in the Makefile.
target: ## description of the target command
- For showing it on beautiful TUI it uses bubbletea.
- You can interact and select the target to execute on TUI.
- Requirements:-
- Go 1.20
- To install the tool, just run the following command
go install github.com/ganeshdipdumbare/[email protected]
- Add unit tests