Lines Matching full:target
1 # $NetBSD: cond-func-target.mk,v 1.5 2025/01/10 23:00:38 rillig Exp $
3 # Tests for the target() function in .if conditions.
7 # The target "target" does not exist yet.
8 .if target(target)
12 target:
14 # The target exists, even though it does not have any commands.
15 .if !target(target)
19 target:
22 # Adding a comment to an existing target does not change whether the target
24 .if !target(target)
28 target:
31 # Adding a command to an existing target does not change whether the target
33 .if !target(target)
38 .if target(${UNDEF})