]> CyberLeo.Net >> Repos - FreeBSD/releng/9.3.git/blob - contrib/bmake/unit-tests/forsubst
Copy stable/9 to releng/9.3 as part of the 9.3-RELEASE cycle.
[FreeBSD/releng/9.3.git] / contrib / bmake / unit-tests / forsubst
1 # $Id: forsubst,v 1.1.1.1 2009/10/07 18:53:35 sjg Exp $
2
3 all: for-subst
4
5 here := ${.PARSEDIR}
6 # this should not run foul of the parser
7 .for file in ${.PARSEFILE}
8 for-subst:        ${file:S;^;${here}/;g}
9         @echo ".for with :S;... OK"
10 .endfor