Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ojizero/gomakehelp
Simple wrapper for Mmake's help functionality
https://github.com/ojizero/gomakehelp
Last synced: 7 days ago
JSON representation
Simple wrapper for Mmake's help functionality
- Host: GitHub
- URL: https://github.com/ojizero/gomakehelp
- Owner: ojizero
- License: mit
- Created: 2022-04-25T20:24:55.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-05-08T15:33:56.000Z (over 2 years ago)
- Last Synced: 2024-08-01T13:38:16.807Z (3 months ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GoMakeHelp
A simple and minimal command that provides documentation and help messages
for your makefiles. This piggybacks of [TJ's Mmake functionality](https://github.com/tj/mmake)
but extracts the help functionality as is as it's own CLI.## Usage
```sh
gomakehelp # This will automatically find Makefile (or if not found makefile)
# and print out the help message based on its comments.gomakehelp --makefile ./some/path/to/makefile # You can use the `--makefile ` option to custom define the makefile you wanna use
```