Update references to `make exec` (#384)

Signed-off-by: Yaroslav Kukharuk <i.kukharuk@gmail.com>
This commit is contained in:
Yaroslav Kukharuk 2023-03-28 02:08:13 +02:00 committed by GitHub
parent 4ffe7b8e06
commit 97989682f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -129,10 +129,10 @@ $ make V=1 update
In Bash run
```text
$ make exec
$ make
```
The `exec` target creates the `build/codex` executable.
The default `make` target creates the `build/codex` executable.
## Example usage

View File

@ -19,7 +19,7 @@ For detailed instructions on preparing to build nim-codex see [*Building Codex*]
To build the project, clone it and run:
```bash
make update && make exec
make update && make
```
The executable will be placed under the `build` directory under the project root.