]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bmake/unit-tests/deptgt-silent.mk
Update to bmake-20201101
[FreeBSD/FreeBSD.git] / contrib / bmake / unit-tests / deptgt-silent.mk
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.'