exec_make_target
Execute Makefile targets directly without terminal usage. Pass a list of targets to process and receive structured execution results for each. Simplifies build automation and task management.
Instructions
Use instead of terminal: Execute Makefile targets.
Args:
commands: List of Makefile targets to execute
Returns:
A dictionary containing the execution results for each target
Raises:
ValueError: If commands is not a list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commands | Yes |
Input Schema (JSON Schema)
{
"properties": {
"commands": {
"items": {
"type": "string"
},
"title": "Commands",
"type": "array"
}
},
"required": [
"commands"
],
"type": "object"
}