make と makefile make とは 様々な操作を自動的に行ってくれるコマンド 「ファイルを『作成』する」ので「make (作る)」という名前 makefile 様々な「ファイルの作成方法」を記述したファイル make は makefile を読み込んで、ファイルを作成する cf. 料理で考えると、makefile がレシピで、make が料理人、ファイルが料理 makefile の記述方法 基本の形式は次の形 <<作りたいファイル>> : <<材料となるファイル>> ... <><<作りために実行する命令>> 例: (hello.exe を作る makefile) hello.o : hello.c # hello.c を材料に hello.o を作る cc -c hello.c # hello.o を作るには「cc -c hello.c」とする hello.exe : hello.o # hello.o を材料に hello.exe を作る cc -o hello.exe hello.o