freebsd-dev/external/bsd/bmake/dist/unit-tests/forsubst
2012-06-20 00:41:31 +00:00

11 lines
235 B
Plaintext

# $Id: forsubst,v 1.1.1.1 2009/10/07 18:53:35 sjg Exp $
all: for-subst
here := ${.PARSEDIR}
# this should not run foul of the parser
.for file in ${.PARSEFILE}
for-subst: ${file:S;^;${here}/;g}
@echo ".for with :S;... OK"
.endfor