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 会在 shell 发出这些命令之前打印任何包含 shell 命令的行。
如果我不希望 GNU make 打印其中一些行,我该怎么办?
@在您不想打印的行前使用:
@
test: echo twice @echo just once
(使用-s开关抑制所有输出。)
-s