Lines Matching +full:pass +full:- +full:1
1 # $NetBSD: dep-colon-bug-cross-file.mk,v 1.5 2023/06/01 20:56:35 rillig Exp $
3 # Until 2020-09-25, the very last dependency group of a top-level makefile
7 # In pass 1, there is a dependency group at the bottom of the file.
12 # After the file has been parsed completely, it is parsed again in pass 2.
13 # In this pass, another command is added to the "current dependency group",
14 # which was still the one from pass 1, which means it was possible to later
17 # Oops, even worse. Running this test in a make from 2020-09-25 or earlier
27 PASS?= 1
29 .if ${PASS} == 2
31 # expect+1: warning: duplicate script for target "all" ignored
32 : pass 2
35 .if ${PASS} == 1
37 PASS= 2
38 .MAKEFLAGS: -f ${.PARSEDIR:q}/${.PARSEFILE:q}
41 # expect+1: warning: using previous script for "all" defined here
42 : pass 1