From 97989682f8a8fa04c86ec113b4481b78d391cd6b Mon Sep 17 00:00:00 2001 From: Yaroslav Kukharuk Date: Tue, 28 Mar 2023 02:08:13 +0200 Subject: [PATCH] Update references to `make exec` (#384) Signed-off-by: Yaroslav Kukharuk --- BUILDING.md | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BUILDING.md b/BUILDING.md index 20d79d61..21cd7936 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -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 diff --git a/README.md b/README.md index 2ff0a2fb..8396ade3 100644 --- a/README.md +++ b/README.md @@ -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.