aboutsummaryrefslogblamecommitdiff
path: root/contrib/bmake/unit-tests/depsrc-silent.mk
blob: 98da7b387906dc1ac9fd3e73488d03ca7d2d1b57 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                      
# $NetBSD: depsrc-silent.mk,v 1.3 2020/08/29 17:34:21 rillig Exp $
#
# Tests for the special source .SILENT in dependency declarations,
# which hides the commands, no matter whether they are prefixed with
# '@' or not.

# Without the .SILENT, the commands 'echo one' and 'echo two' would be
# written to stdout.
all: .SILENT
	echo one
	echo two
	@echo three