]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bmake/unit-tests/depsrc-silent.mk
less: upgrade to v581.2.
[FreeBSD/FreeBSD.git] / contrib / bmake / unit-tests / depsrc-silent.mk
1 # $NetBSD: depsrc-silent.mk,v 1.3 2020/08/29 17:34:21 rillig Exp $
2 #
3 # Tests for the special source .SILENT in dependency declarations,
4 # which hides the commands, no matter whether they are prefixed with
5 # '@' or not.
6
7 # Without the .SILENT, the commands 'echo one' and 'echo two' would be
8 # written to stdout.
9 all: .SILENT
10         echo one
11         echo two
12         @echo three