makeコマンドのオプションの一部のまとめになり、コマンド例とその実行結果を紹介しています。また、ここでのオプションはGNU makeでのオプションになります。
makeについては以下の記事で紹介しています。
makeコマンドのオプションについて その2もあります。
目次
- 1 実行するmakefileの指定 (-fオプション)
- 2 タイムスタンプに関係なくレシピを実行 (-Bオプション)
- 3 指定したファイルのレシピを実行しない (-oオプション)
- 4 makefileを読み込む前にディレクトリを移動 (-Cオプション)
- 5 makefileの実行前にディレクトリ情報を表示 (-wオプション)
- 6 エラーを無視 (-iオプション)
- 7 エラーが起きてもできる限り実行 (-kオプション)
- 8 変数を環境変数でオーバライド (-eオプション)
- 9 文字列をmakefileの構文として実行 (--evalオプション)
- 10 シンボリックリンクファイルのタイムスタンプも参照 (-Lオプション)
- 11 デフォルトの暗黙的なルールをクリア (-rオプション)
- 12 デフォルトの暗黙的なルールとその変数をクリア (-Rオプション)
- 13 ファイルに対して touchのみを実行 (-tオプション)
実行するmakefileの指定
(-fオプション)
-fオプションは実行するmakefileを指定できます。デフォルトでmakeを実行する以外のファイルを指定する場合に利用できます。
file.mk
1 2 3 4 5 |
target.txt : file1.txt cp $< $@ file1.txt : touch $@ |
コマンド例と実行結果
1 2 3 4 5 6 7 8 |
$ls file.mk $ $make -ffile.mk touch file1.txt cp file1.txt target.txt $ls file.mk file1.txt target.txt |
また、変数$<は一番初めに記述されている依存ファイルを表すmakeの変数になります。
タイムスタンプに関係なくレシピを実行
(-Bオプション)
makeはターゲットファイルと依存ファイルのタイムスタンプの関係で、ターゲットファイルが最新の状態の場合、そのターゲットファイルを生成するレシピを実行しません。
-Bオプションはタイムスタンプに関係なく、レシピを実行することができます。
makefile
1 2 3 4 5 |
target.txt : file1.txt cp $< $@ file1.txt : touch $@ |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 10 11 12 |
$ls --full-time -go 合計 4 -rw-rw-r-- 1 0 2018-04-29 23:05:26.200017999 +0900 file1.txt -rw-rw-r-- 1 56 2018-04-29 14:57:35.471125000 +0900 makefile -rw-rw-r-- 1 0 2018-04-29 23:05:26.200017999 +0900 target.txt $ $make make: 'target.txt' is up to date. $ $make -B touch file1.txt cp file1.txt target.txt |
指定したファイルのレシピを実行しない
(-oオプション)
-oオプションは指定したファイルのタイムスタンプが依存ファイルより古い場合等でもmakeのレシピを実行しません。
makefile
1 2 3 4 5 |
target.txt : file1.txt cp $< $@ file1.txt : touch $@ |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
$ls makefile $ $make -o target.txt make: 'target.txt' is up to date. $ $make -o file1.txt cp file1.txt target.txt cp: 'file1.txt' を stat できません: No such file or directory makefile:2: recipe for target 'target.txt' failed make: *** [target.txt] Error 1 $ $make touch file1.txt cp file1.txt target.txt |
makefileを読み込む前にディレクトリを移動
(-Cオプション)
-Cオプションはmakefileを読み込む前にディレクトリを移動します。このオプションは再帰的にmakeを実行するときに便利なオプションになります。
makefile
1 2 3 4 |
.PHONY: all all: make -C dir |
dir/makefile
1 2 3 4 5 |
target.txt : file1.txt cp $< $@ file1.txt : touch $@ |
コマンド例と実行結果
1 2 3 4 5 6 7 8 |
$ls dir makefile $make make -C dir make[1]: Entering directory '/home/ubuntu/test_makeoptions/dir' touch file1.txt cp file1.txt target.txt make[1]: Leaving directory '/home/ubuntu/test_makeoptions/dir' |
makefileの実行前にディレクトリ情報を表示
(-wオプション)
-wオプションはmakefileの実行前や実行後にディレクトリ情報を表示します。
makefile
1 2 3 4 5 |
target.txt : file1.txt cp $< $@ file1.txt : touch $@ |
コマンド例と実行結果
1 2 3 4 5 |
$make -w make: Entering directory '/home/ubuntu/test_makeoptions' touch file1.txt cp file1.txt target.txt make: Leaving directory '/home/ubuntu/test_makeoptions' |
また、--no-print-directoryオプションを利用するとディレクトリ情報の表示を抑制することができます。
makefile
1 2 3 4 |
.PHONY: all all: make -C dir |
dir/makefile
1 2 3 4 5 |
target.txt : file1.txt cp $< $@ file1.txt : touch $@ |
コマンド例と実行結果
1 2 3 4 |
$make make -C dir --no-print-directory touch file1.txt cp file1.txt target.txt |
エラーを無視
(-iオプション)
makeで実行しているコマンドでエラーが起きた場合、makeの実行が中断されます。
-iオプションを用いると、レシピ内でエラーが起きても、レシピ内のコマンドが続けて実行され続けます。
makefile
1 2 3 4 5 |
target.txt : file1.txt cp $< $@ echo "copy file ..." file1.txt : |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$make -i cp file1.txt target.txt cp: 'file1.txt' を stat できません: No such file or directory makefile:2: recipe for target 'target.txt' failed make: [target.txt] Error 1 (ignored) echo "copy file ..." copy file ... $ $make cp file1.txt target.txt cp: 'file1.txt' を stat できません: No such file or directory makefile:2: recipe for target 'target.txt' failed make: *** [target.txt] Error 1 |
また、makefileでコマンドの文頭に'-'をつけると、そのコマンドの部分でエラーが起きても続けて実行できます。
makefile
1 2 3 4 5 |
target.txt : file1.txt -cp $< $@ echo "copy file ..." file1.txt : |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 10 |
$ls makefile $ $make cp file1.txt target.txt cp: 'file1.txt' を stat できません: No such file or directory makefile:2: recipe for target 'target.txt' failed make: [target.txt] Error 1 (ignored) echo "copy file ..." copy file ... |
エラーが起きてもできる限り実行
(-kオプション)
-kオプションは、エラーが起きてもできる限り実行処理を行います。
例えば、あるターゲットファイルに対して、複数の依存ファイルが存在する時にある依存ファイルのレシピでエラーが起きた場合、そのレシピの処理は中断されますが、別の依存ファイルの処理はそのまま行うことができます。
makefile
1 2 3 4 5 6 7 8 9 |
target.txt : file1.txt file2.txt echo "$@" file1.txt : false echo "$@" file2.txt : echo "$@" |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 10 11 12 |
$make -k false makefile:5: recipe for target 'file1.txt' failed make: *** [file1.txt] Error 1 echo "file2.txt" file2.txt make: Target 'target.txt' not remade because of errors. $ $make false makefile:5: recipe for target 'file1.txt' failed make: *** [file1.txt] Error 1 |
また、再帰的にmakeを行う場合、-Sオプションを用いると-kオプションをキャンセルすることができます。
makefile
1 2 3 4 5 6 7 8 9 10 |
.PHONY: all process1 process2 all : process1 process2 process1 : @false process2 : @echo "process2 ..." make -S -C dir |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
$make -k makefile:6: recipe for target 'process1' failed make: *** [process1] Error 1 process2 ... make -S -C dir make[1]: Entering directory '/home/ubuntu/test_makeoptions/dir' false makefile:5: recipe for target 'file1.txt' failed make[1]: *** [file1.txt] Error 1 make[1]: Leaving directory '/home/ubuntu/test_makeoptions/dir' makefile:9: recipe for target 'process2' failed make: *** [process2] Error 2 make: Target 'all' not remade because of errors. $ $make makefile:6: recipe for target 'process1' failed make: *** [process1] Error 1 |
変数を環境変数でオーバライド
(-eオプション)
-eオプションを利用するとmakeの変数より環境変数を優先しオーバライドします。
makefile
1 2 3 4 |
TARGET=target.txt $(TARGET) : @echo '$@' |
コマンド例と実行結果
1 2 3 4 5 6 |
$TARGET='test.txt' make -e test.txt $TARGET='test.txt' make target.txt $make target.txt |
文字列をmakefileの構文として実行
(--evalオプション)
--evalオプションを用いるとmakefileを読み込む前に文字列をmakefileの構文として読み込むことができます。また、--evalオプションはmakeでのeval関数のコマンドライン版になります。
makefile
1 2 3 |
.PHONY: all all : @echo 'all process ...' |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 |
$make --eval='target.txt:file1.txt;cp $< $@' cp file1.txt target.txt $ $rm target.txt $make --eval='target.txt:file1.txt;cp $< $@' all all process ... $make --eval='target.txt:file1.txt;cp $< $@' target.txt all cp file1.txt target.txt all process ... |
シンボリックリンクファイルのタイムスタンプも参照
(-Lオプション)
通常、シンボリックリンクファイルを参照している場合、リンク先のタイムスタンプが参照されます。
-Lオプションを用いると、シンボリックリンクファイルのタイムスタンプも参照され、両方のファイルのタイムスタンプから新しい方のタイムスタンプをファイルのタイムスタンプとして扱います。
makefile
1 2 |
target.txt : file_sym.txt touch $@ |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
$make make: 'target.txt' is up to date. $ls file.txt file_sym.txt makefile target.txt $ $touch file.txt $make -L touch target.txt $touch -h file_sym.txt $make -L touch target.txt $ $touch file.txt $make touch target.txt $touch -h file_sym.txt $make make: 'target.txt' is up to date. |
デフォルトの暗黙的なルールをクリア
(-rオプション)
-rオプションはサフィックスルールのような暗黙的なルールの定義をクリアします。
デフォルトでどのようなサフィックスルールが存在するかはmakefileが存在しない状態で、makeのデータベースを確認する-pオプションが利用できます。
以下のコマンドは、envコマンドを用いて環境変数を取り除き、grepコマンドでコメント行と空行を取り除いてmakeのデータベースを確認します。
コマンド例
1 |
env -i make -rqp |grep -v -e '^#' -e'^$' |
実行結果例 ▼表示
デフォルトの暗黙的なルールとその変数をクリア
(-Rオプション)
-Rオプションはデフォルトの暗黙的なルールの変数をクリアします。このオプションは-rオプションも自動的にオンになるため、結果として、デフォルトの暗黙的なルールとその変数をクリアすることになります。
コマンド例
1 |
env -i make -Rqp |grep -v -e '^#' -e'^$' |
実行結果例 ▼表示
ファイルに対して touchのみを実行
(-tオプション)
-tオプションを用いるとレシピを実行する代わりにtouchコマンドを実行します。このオプションを用いるとレシピを実行しないでmakeで生成するファイルのタイムスタンプを変更できます。
makefile
1 2 3 4 5 |
target.txt : file.txt echo "target.txt process ..." file.txt : echo "file.txt process ..." |
コマンド例と実行結果
1 2 3 4 5 6 7 8 9 10 11 12 13 |
$ls makefile $make -t touch file.txt touch target.txt $make make: 'target.txt' is up to date. $ $touch file.txt $make -t touch target.txt $make make: 'target.txt' is up to date. |