Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
デフォルトでは、GNU make は、シェル コマンドがシェルによって発行される前に、シェル コマンドを含むすべての行を出力します。
GNU make にこれらの行の一部を出力させたくない場合、どうすればよいですか?
@印刷したくない行の前で使用します。
@
test: echo twice @echo just once
(-sスイッチを使用して、すべての出力を抑制します。)
-s