1# $NetBSD: sh-leading-at.mk,v 1.3 2020/08/22 09:16:08 rillig Exp $
2#
3# Tests for shell commands preceded by an '@', to suppress printing
4# the command to stdout.
5
6all:
7	@
8	@echo 'ok'
9	@ echo 'space after @'
10	echo 'echoed'
11