📝
MakefileでTab文字の入力を避ける
MakefileでTab文字の入力を避ける
一般的な書き方では、Tab文字を入力することが求められます。
Tab文字の入力を避ける方法を紹介します。
Makefile
build: ; swift build
使用例
$ make build
参考: https://quruli.ivory.ne.jp/document/make_3.79.1/make-jp_3.html#Rule-Syntax
一般的な書き方では、Tab文字を入力することが求められます。
Tab文字の入力を避ける方法を紹介します。
build: ; swift build
$ make build
参考: https://quruli.ivory.ne.jp/document/make_3.79.1/make-jp_3.html#Rule-Syntax
Discussion