mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-09 07:06:38 -04:00
11 lines
234 B
Makefile
11 lines
234 B
Makefile
# $Id: forsubst.mk,v 1.1 2014/08/21 13:44:51 apb 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
|