blob: 38a3c7d7a8e1e9cd629f5922d26de09b248c61e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: opt-debug-loud.mk,v 1.4 2020/10/05 19:27:48 rillig Exp $
#
# Tests for the -dl command line option, which prints the commands before
# running them, ignoring the command line option for silent mode (-s) as
# well as the .SILENT special source and target, as well as the '@' prefix
# for shell commands.
.MAKEFLAGS: -dl -s
.SILENT:
# The -dl command line option does not affect commands that are run during
# variable expansion, such as :!cmd! or :sh.
.if ${:!echo word!} != "word"
. error
.endif
all: .SILENT
# Even though the command line option -s is given, .SILENT is set
# for all targets and for this target in particular, the command
# is still printed. The -dl debugging option is stronger than all
# of these.
@echo all-word
|