tools/llvm: Do not build with symbols
[minix3.git] / tests / usr.bin / make / d_export.mk
blob9c305f85410f3a0bd972a1e882ffd44b1f8523de
1 # $NetBSD: d_export.mk,v 1.1 2012/03/17 16:33:14 jruoho Exp $
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
11 .export UT_FU UT_FOO
12 .export UT_DOLLAR
13 # this one will be ignored
14 .export .MAKE.PID
16 BAR=bar is ${UT_FU}
18 .MAKE.EXPORTED+= UT_ZOO UT_TEST
20 all:
21 @env | grep '^UT_' | sort