From 085970cf5391b9ec08c3a9bf74902bcf861b9f86 Mon Sep 17 00:00:00 2001 From: lily Date: Tue, 13 Jan 2026 13:52:18 +1100 Subject: [PATCH] Update docs to add make --- GEMINI.md | 5 ++--- README.md | 4 +--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/GEMINI.md b/GEMINI.md index 271468a..bc7cc39 100644 --- a/GEMINI.md +++ b/GEMINI.md @@ -20,10 +20,9 @@ The individual service scripts are interpreted by the configured `SHELL` (defaul - The interpreter specified in `src/config.h` (e.g., `/bin/sh`). ### Building -Compile the components manually: +Compile the components with make: ```bash -gcc src/main.c -o bin/main -gcc src/solver.c -o bin/solver +make ``` ### Running diff --git a/README.md b/README.md index b85fcf8..748dbef 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,7 @@ A dependency-aware init system that resolves service order and executes them. ## Building ```bash -mkdir -p bin -gcc src/main.c -o bin/main -gcc src/solver.c -o bin/solver +make ``` ## Usage