OS : macOS Catalina(バージョン10.15.6)
目的 : GNU makeを使いたい
手段 : コマンドライン・デベロッパツールをインストールする
Xcode : 未インストール(Xcodeにコマンドライン・デベロッパツールが含まれているそうです)
手順 :
1.ターミナルを起動します。
2.以下コマンドを実行します。
make --version
すると、標準出力か標準エラー出力に、以下が出力されます。
xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools.
3.コマンドライン・デベロッパツールのインストールのダイアログが出るので、指示に従ってインストールします。
4.手順2.のコマンドを再実行して、インストール確認を行います。
make --version
GNU Make 3.81
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
This program built for i386-apple-darwin11.3.0
インストールされたGNU makeのバージョンは3.81でした。