xref: /freebsd/contrib/bmake/unit-tests/deptgt-silent.mk (revision 1e4896b176ff664dc9c2fce5426bf2fdf8017a7d)
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
7all:
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