Makefileで実行されるコマンドの詳細表示有効化メモ
autotools, CMake で生成したMakefileの場合
$ make VERBOSE=1
or
$ make V=1
自前で作成したMakefileの場合
$ make SHELL='sh -x'
参考
makefile - How do I force make/gcc to show me the commands? - Stack Overflow
Go to list of users who liked
More than 5 years have passed since last update.
Makefileで実行されるコマンドの詳細表示有効化メモ
$ make VERBOSE=1
or
$ make V=1
$ make SHELL='sh -x'
makefile - How do I force make/gcc to show me the commands? - Stack Overflow
Register as a new user and use Qiita more conveniently
Go to list of users who liked