Lines Matching +full:always +full:- +full:running
1 # $NetBSD: opt-no-action-runflags.mk,v 1.1 2020/12/09 07:57:52 rillig Exp $
3 # Tests for the -n command line option, which runs almost no commands,
4 # combined with the RunFlags '@', '-', '+' for individual commands.
7 # opt-jobs-no-action.mk
8 # The corresponding test with the -j option
10 .MAKEFLAGS: -n
16 ALWAYS.no= # none
17 ALWAYS.yes= +
18 IGNERR.no= echo running
19 IGNERR.yes= -echo running; false
22 @+echo hide-from-output 'begin $@'; echo
24 . for always in no yes
26 @+echo hide-from-output silent=${silent} always=${always} ignerr=${ignerr}
27 ${SILENT.${silent}}${ALWAYS.${always}}${IGNERR.${ignerr}}
28 @+echo hide-from-output
32 @+echo hide-from-output 'end $@'