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