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.
25 lines
430 B
Makefile
25 lines
430 B
Makefile
# $NetBSD: Makefile,v 1.10 2003/10/21 10:01:22 lukem Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIBS= llib-lposix.ln llib-lstdc.ln
|
|
|
|
.if ${MKLINT} != "no"
|
|
FILES= ${LIBS}
|
|
FILESDIR= ${LINTLIBDIR}
|
|
|
|
realall: ${LIBS}
|
|
.endif
|
|
|
|
CLEANFILES+= ${LIBS}
|
|
|
|
llib-lposix.ln: llib-lposix
|
|
${_MKTARGET_CREATE}
|
|
${LINT} ${LINTFLAGS} -Cposix ${.ALLSRC}
|
|
|
|
llib-lstdc.ln: llib-lstdc
|
|
${_MKTARGET_CREATE}
|
|
${LINT} ${LINTFLAGS} -Cstdc ${.ALLSRC}
|
|
|
|
.include <bsd.prog.mk>
|