makectl-0.1.1 is not a library.
makectl

Generate and Manage targets in your makefiles.
Makectl is a command line tool to generate and manage general use targets in your makefiles.
Features
- Generates Makefiles and manages existing ones
- Provides a repository with templates for general use targets
- Does not break your custom targets
Example
In a folder, lets say you have a Makefile
.PHONY run
:
...
Now you may want to add some general use targets to reuse in your project, for example, everyone needs a target to clean up .pyc
files in a Python project.
The end result will be:
.PHONY run clean-pyc
:
# MAKECTL MANAGED BLOCK INIT
:
# MAKECTL MANAGED BLOCK END
The templates database is a folder under this repo with .template
files in it.