make を使ってみる (unix)
unix
Published: 2019-10-11

やったこと

make を使ってみます

確認環境

$ 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

調査

Makefile の作成

Makefile

all:
  @echo Hello1

make を実行する

$ make
Hello1