11.3Srillig# $NetBSD: depsrc-silent.mk,v 1.3 2020/08/29 17:34:21 rillig Exp $
21.1Srillig#
31.3Srillig# Tests for the special source .SILENT in dependency declarations,
41.3Srillig# which hides the commands, no matter whether they are prefixed with
51.3Srillig# '@' or not.
61.1Srillig
71.3Srillig# Without the .SILENT, the commands 'echo one' and 'echo two' would be
81.3Srillig# written to stdout.
91.3Srilligall: .SILENT
101.3Srillig	echo one
111.3Srillig	echo two
121.3Srillig	@echo three
13