From e457bb9a73ab07c79ea1fceffa571de9d5d5622a Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Sun, 1 Feb 2026 22:16:03 +0100 Subject: Adjusted README.md to usage of GNU-Make Now Makefile can be used to build all tools with a single command. Keeping original guide to build individual selection of tools. --- README.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 8e8b602..af45bc8 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,17 @@ cd llm-functions ### 2. Build tools and agents -#### I. Create a `./tools.txt` file with each tool filename on a new line. +#### Build all tools using make + +Simply build all tools using GNU-Make: + +```bash +make +``` + +#### Build individual tools + +##### I. Create a `./tools.txt` file with each tool filename on a new line. ``` get_current_weather.sh @@ -69,20 +79,20 @@ Now there is a `web_search.sh` ready to be added to your `./tools.txt`. -#### II. Create a `./agents.txt` file with each agent name on a new line. +##### II. Create a `./agents.txt` file with each agent name on a new line. ``` coder todo ``` -#### III. Build `bin` and `functions.json` +##### III. Build `bin` and `functions.json` ```sh argc build ``` -#### IV. Ensure that everything is ready (environment variables, Node/Python dependencies, mcp-bridge server) +##### IV. Ensure that everything is ready (environment variables, Node/Python dependencies, mcp-bridge server) ```sh argc check -- cgit v1.2.3