blob: f9d56e539ff0b5b0bae4d8c7636907d5310a78a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# $NetBSD: var-class-local.mk,v 1.5 2020/11/05 18:08:39 rillig Exp $
#
# Tests for target-local variables, such as ${.TARGET} or $@.
# TODO: Implementation
# Ensure that the name of the variable is exactly the given one.
# The variable "@" is an alias for ".TARGET", so the implementation might
# canonicalize these aliases at some point, and that might be surprising.
# This aliasing happens for single-character variable names like $@ or $<
# (see VarFind, CanonicalVarname), but not for braced or parenthesized
# expressions like ${@}, ${.TARGET} ${VAR:Mpattern} (see Var_Parse,
# ParseVarname).
.if ${@:L} != "@"
. error
.endif
.if ${.TARGET:L} != ".TARGET"
. error
.endif
.if ${@F:L} != "@F"
. error
.endif
.if ${@D:L} != "@D"
. error
.endif
all:
.SUFFIXES: .c .o
var-class-local.c:
: Making ${.TARGET} out of nothing.
.c.o:
: Making ${.TARGET} from ${.IMPSRC}.
# The local variables @F, @D, <F, <D are legacy forms.
# See the manual page for details.
: Making basename "${@F}" in "${@D}" from "${<F}" in "${<D}".
all: var-class-local.o
# The ::= modifier overwrites the .TARGET variable in the node
# 'all', not in the global scope. This can be seen with the -dv
# option, looking for "all:@ = overwritten".
: ${.TARGET} ${.TARGET::=overwritten}${.TARGET}
|