From 0c811721fefcd6cb6ceb45ed675451aeb62a18b9 Mon Sep 17 00:00:00 2001 From: Avi Gupta Date: Mon, 7 Apr 2025 11:26:34 +0200 Subject: [PATCH] Website: Add docs for MacOS under "utilities" in "getting started" Add instructions for installing `make`. Reviewed-on: https://projects.blender.org/studio/flamenco/pulls/104378 --- .../development/getting-started/_index.md | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/web/project-website/content/development/getting-started/_index.md b/web/project-website/content/development/getting-started/_index.md index 95018289..64576e9f 100644 --- a/web/project-website/content/development/getting-started/_index.md +++ b/web/project-website/content/development/getting-started/_index.md @@ -106,7 +106,27 @@ You'll need [7Zip][7zip] to extract it. [7zip]: https://www.7-zip.org/download.html {{< /tab >}} {{< tab "macOS" >}} -TODO: write this documentation. +If make is not already installed on MacOS, there are two ways to install it. + +**Option 1: install XCode Command Line Tools** + +In your terminal, run: +``` +xcode-select --install +``` + +**Option 2: install `make` via Homebrew** + +First, make sure that [Homebrew][homebrew] is installed. + +Once that is done, run: +``` +brew install make +``` + +Both ways will install `make` on your machine. + +[homebrew]: https://brew.sh/ {{< /tab >}} {{< /tabs >}}