xref: /freebsd/contrib/bmake/unit-tests/depsrc-silent.mk (revision 8cc087a1eee9ec1ca9f7ac1e63ad51bdb5a682eb)
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.
9all: .SILENT
10	echo one
11	echo two
12	@echo three
13