948f327ee4
This allows META_FILES option to be renamed META_MODE. Also add META_COOKIE_TOUCH for use in targets that can benefit from a cookie when in meta mode. Differential Revision: https://reviews.freebsd.org/D4153 Reviewed by: bdrewery
22 lines
403 B
Makefile
22 lines
403 B
Makefile
# $NetBSD: Makefile,v 1.7 2000/06/14 20:22:19 matt Exp $
|
|
# $FreeBSD$
|
|
|
|
LIBS= llib-lposix.ln llib-lstdc.ln
|
|
|
|
FILES= ${LIBS}
|
|
FILESDIR= ${LINTLIBDIR}
|
|
|
|
CLEANFILES+= ${LIBS}
|
|
|
|
llib-lposix.ln: llib-lposix
|
|
${LINT} ${LINTFLAGS} -Cposix ${.ALLSRC}
|
|
|
|
llib-lstdc.ln: llib-lstdc
|
|
${LINT} ${LINTFLAGS} -Cstdc ${.ALLSRC}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.if ${MK_DIRDEPS_BUILD} == "yes"
|
|
LINTFLAGS+= -I${STAGE_INCLUDEDIR}
|
|
.endif
|