Drop main() prototype. Syncs with NetBSD-8
[minix.git] / usr.bin / make / unit-tests / export-all.mk
blob576487b53e0275f36a804abbe11e6ffd99c4dec4
1 # $Id: export-all.mk,v 1.2 2015/04/10 20:41:59 sjg Exp $
3 UT_OK=good
4 UT_F=fine
6 # the old way to do :tA
7 M_tAbad = C,.*,cd & \&\& 'pwd',:sh
8 # the new
9 M_tA = tA
11 here := ${.PARSEDIR}
13 # this will cause trouble (recursing if we let it)
14 UT_BADDIR = ${${here}/../${here:T}:L:${M_tAbad}:T}
15 # this will be ok
16 UT_OKDIR = ${${here}/../${here:T}:L:${M_tA}:T}
18 .export
20 .include "export.mk"
22 UT_TEST=export-all
23 UT_ALL=even this gets exported