xref: /freebsd/contrib/bmake/unit-tests/export.mk (revision c697fb7f)
1# $Id: export.mk,v 1.1.1.1 2014/08/30 18:57:18 sjg Exp $
2
3UT_TEST=export
4UT_FOO=foo${BAR}
5UT_FU=fubar
6UT_ZOO=hoopie
7UT_NO=all
8# belive it or not, we expect this one to come out with $UT_FU unexpanded.
9UT_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
16BAR=bar is ${UT_FU}
17
18.MAKE.EXPORTED+= UT_ZOO UT_TEST
19
20all:
21	@env | grep '^UT_' | sort
22
23