# A simple variant is to prefix commands with $(Q) - that's useful # for commands that shall be hidden in non-verbose mode. # # $(Q)ln $@ :< # # If KBUILD_VERBOSE equals 0 then the above command will be hidden. # If KBUILD_VERBOSE equals 1 then the above command is displayed.
Makefileの中で決められてるように見えますけど (スコア:1)
kernelのMakefile的にはVという値でKERNEL_VERBOSEを制御して、それがQを決めてるような。
ファイル内のコメントにも全コマンド見たければmake V=1でやれとあります。試してないけど、これで良いような。make Q=で変更しても上書きされるからダメかなぁ。
Re:Makefileの中で決められてるように見えますけど (スコア:1)
下記はその一例になるか、無関係で余計なものなのかはよくわかりませんが。。。
http://ftp.slackware.com/pub/nslu2/sources/git/git.openmoko.org.git.ke... [slackware.com]
# A simple variant is to prefix commands with $(Q) - that's useful
# for commands that shall be hidden in non-verbose mode.
#
# $(Q)ln $@ :<
#
# If KBUILD_VERBOSE equals 0 then the above command will be hidden.
# If KBUILD_VERBOSE equals 1 then the above command is displayed.