## Overview
-To build your project, we first need to make a file called `build.c` which describes what to build.
+To build a project, you first need to make a file called `build.c` which describes what to build.
```c
// build.c
}
```
-Next, we need to compile the build file and run the resulting executable, called `build`.
+Next, compile the build file and run the resulting executable, called `build`.
```console
> cc -o build build.c