1 # $NetBSD: deptgt-silent.mk,v 1.3 2020/09/10 21:40:50 rillig Exp $ 2 # 3 # Tests for the special target .SILENT in dependency declarations. 4 5 .SILENT: all 6 7 all: 8 @echo 'This is not echoed because of the @.' 9 # Without the .SILENT, the following command would be echoed. 10 echo 'This is not echoed because of the .SILENT.' 11