Update docs to add make

This commit is contained in:
lily 2026-01-13 13:52:18 +11:00
parent 328dc018a6
commit 085970cf53
No known key found for this signature in database
GPG key ID: 6A91E98FC1591F03
2 changed files with 3 additions and 6 deletions

View file

@ -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`). - The interpreter specified in `src/config.h` (e.g., `/bin/sh`).
### Building ### Building
Compile the components manually: Compile the components with make:
```bash ```bash
gcc src/main.c -o bin/main make
gcc src/solver.c -o bin/solver
``` ```
### Running ### Running

View file

@ -5,9 +5,7 @@ A dependency-aware init system that resolves service order and executes them.
## Building ## Building
```bash ```bash
mkdir -p bin make
gcc src/main.c -o bin/main
gcc src/solver.c -o bin/solver
``` ```
## Usage ## Usage