Lines Matching full:run
5 # Only commands that are in a .MAKE target or prefixed by '+' are run.
9 # This command cannot be prevented from being run since it is used at parse
14 all: run-always
16 # Both of these commands are printed, but only the '+' command is run.
19 @+echo '$@: run always'
21 # Both of these commands are printed, but only the '+' command is run.
24 @+echo '$@: run always'
26 # None of these commands is printed, but both are run, because this target
28 run-always: .MAKE
30 @+echo '$@: run always'
32 # Both of these commands are printed, but only the '+' command is run.
35 @+echo '$@: run always'