1281760Ssjg# $Id: export-all.mk,v 1.1.1.2 2015/04/10 20:43:38 sjg Exp $
2281760Ssjg
3281760SsjgUT_OK=good
4281760SsjgUT_F=fine
5281760Ssjg
6281760Ssjg# the old way to do :tA
7281760SsjgM_tAbad = C,.*,cd & \&\& 'pwd',:sh
8281760Ssjg# the new
9281760SsjgM_tA = tA
10281760Ssjg
11281760Ssjghere := ${.PARSEDIR}
12281760Ssjg
13281760Ssjg# this will cause trouble (recursing if we let it)
14281760SsjgUT_BADDIR = ${${here}/../${here:T}:L:${M_tAbad}:T}
15281760Ssjg# this will be ok
16281760SsjgUT_OKDIR = ${${here}/../${here:T}:L:${M_tA}:T}
17281760Ssjg
18281760Ssjg.export
19281760Ssjg
20281760Ssjg.include "export.mk"
21281760Ssjg
22281760SsjgUT_TEST=export-all
23281760SsjgUT_ALL=even this gets exported
24