repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
tests
/
util
/
make
/
d_export.mk
blob
c71bffcd958be22943cdaf6ea5363765e0aa54b9
1
# $NetBSD$
2
3
UT_TEST
=
export
4
UT_FOO
=
foo
${
BAR
}
5
UT_FU
=
fubar
6
UT_ZOO
=
hoopie
7
UT_NO
=
all
8
# belive it or not, we expect this one to come out with $UT_FU unexpanded.
9
UT_DOLLAR
=
This is
$
$UT_FU
10
11
.
export
UT_FU UT_FOO
12
.
export
UT_DOLLAR
13
# this one will be ignored
14
.
export
.MAKE.PID
15
16
BAR
=
bar is
${
UT_FU
}
17
18
.MAKE.EXPORTED
+=
UT_ZOO UT_TEST
19
20
all
:
21
@env | grep
'^UT_'
|
sort
22