130ab7336b
* Don't bother prefixing commands with a line of ${_MKCMD}\ and instead rely upon "make -s". This is less intrusive on all the Makefiles than the former. Idea from David Laight. * Rename the variables use to print messages. The scheme now is: _MKMSG_FOO Run _MKMSG 'foo' _MKTARGET_FOO Run _MKMSG_FOO ${.TARGET} From discussion with Alistair Crooks.
14 lines
317 B
Makefile
14 lines
317 B
Makefile
# $NetBSD: Makefile.inc,v 1.3 2003/10/21 10:01:21 lukem Exp $
|
|
|
|
.PATH: ${.CURDIR}/ISO646
|
|
|
|
CODE:= ISO646
|
|
.include "${.CURDIR}/Makefile.part"
|
|
|
|
.for i in ${ISO646_PART}
|
|
ISO646-${i:S/:/@/}.src: ISO646.src
|
|
${_MKTARGET_CREATE}
|
|
sed 's/ISO646-x/ISO646-$i/' $> > $@
|
|
CLEANFILES:= ${CLEANFILES} ISO646-${i:S/:/@/}.src
|
|
.endfor
|