11.6Srillig# $NetBSD: sh-leading-at.mk,v 1.6 2023/01/19 19:55:27 rillig Exp $
21.1Srillig#
31.2Srillig# Tests for shell commands preceded by an '@', to suppress printing
41.2Srillig# the command to stdout.
51.5Srillig#
61.5Srillig# See also:
71.5Srillig#	.SILENT
81.5Srillig#	depsrc-silent.mk
91.5Srillig#	opt-silent.mk
101.1Srillig
111.1Srilligall:
121.3Srillig	@
131.3Srillig	@echo 'ok'
141.3Srillig	@ echo 'space after @'
151.3Srillig	echo 'echoed'
161.4Srillig	# The leading '@' can be repeated.
171.4Srillig	@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
181.4Srillig	@@@echo '3'
191.6Srillig
201.6Srillig	# Since 2023-01-17, the leading '@', '+' and '-' may contain
211.6Srillig	# whitespace, for compatibility with GNU make.
221.6Srillig	@ @ @ echo 'whitespace in leading part'
23