]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bmake/unit-tests/forsubst.mk
Update to bmake-20201101
[FreeBSD/FreeBSD.git] / contrib / bmake / unit-tests / forsubst.mk
1 # $NetBSD: forsubst.mk,v 1.2 2020/10/24 08:34:59 rillig 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